:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  --bg: #050607;
  --bg-soft: #0b0d10;
  --surface: #101318;
  --surface-elevated: #161a20;
  --text: #f5f7fb;
  --muted: #aeb6c2;
  --muted-strong: #d8dde5;
  --primary: #e94335;
  --primary-dark: #be2e24;
  --accent: #f3b33d;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.28);
  --content-width: 66ch;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(180deg, #090b0e 0%, var(--bg) 42%, #030405 100%);
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 4rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 45rem);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(5, 6, 7, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.header-inner,
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  min-height: 7.9rem;
  padding: 1.15rem 0;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.65rem 0.9rem 0.65rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 12rem;
  height: 5.35rem;
  object-fit: contain;
}

.brand-title {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  min-width: 0;
}

.contact-pill {
  color: #fff;
  border: 1px solid rgba(233, 67, 53, 0.55);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  background: rgba(233, 67, 53, 0.15);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: #fff;
  font-size: 1.35rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  min-width: 0;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.88rem;
  padding: 0.65rem 0.7rem;
  border-radius: 6px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.hero {
  padding: 4.25rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 39rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 900;
}

.hero h1,
.section-header h1,
.section-header h2,
.section-heading h2 {
  color: #fff;
  line-height: 1.05;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.15rem);
  font-weight: 950;
}

.text-accent {
  color: var(--primary);
}

.hero p,
.section p {
  color: var(--muted);
}

.hero p {
  margin: 1.5rem 0 2.1rem;
  max-width: var(--content-width);
  font-size: 1.18rem;
  line-height: 1.62;
  color: var(--muted-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 750;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 34px rgba(233, 67, 53, 0.28);
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: var(--border-strong);
}

.button.secondary:hover {
  border-color: rgba(233, 67, 53, 0.75);
}

.button.small {
  min-height: 2.35rem;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

.button.large {
  padding: 1.1rem 1.75rem;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-highlights div,
.pillar-card,
.feature-card,
.service-card,
.contact-card,
.product-card,
.machine-view-card,
.process-card,
.buyer-panel,
.buyer-checklist {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.hero-highlights div {
  padding: 1rem;
  border-radius: 8px;
}

.hero-highlights strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-image {
  display: grid;
  place-items: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: linear-gradient(145deg, #1a1f26, #090b0d 58%);
  box-shadow: var(--shadow);
}

.hero-frame::before {
  display: none;
}

.hero-frame img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  padding: 1.5rem;
}

.hero-tag {
  position: static;
  max-width: 21rem;
  margin: 0 1.25rem 1.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-tag strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.11em;
  margin-bottom: 0.3rem;
}

.hero-tag span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.home-page {
  --primary: #ff6a00;
  --primary-dark: #d95500;
  --accent: #ff7a14;
}

.home-page .site-header {
  position: sticky;
  background: #030303;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

.home-page .header-inner {
  min-height: 0;
  padding: 0;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  grid-template-areas:
    "brand actions"
    "nav nav";
  gap: 0;
}

.home-page .brand {
  grid-area: brand;
  min-height: 7.35rem;
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border-width: 0 1px;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: #050505;
  box-shadow: none;
}

.home-page .brand-logo {
  width: min(12rem, 100%);
  height: 4.85rem;
}

.home-page .brand > div {
  display: none;
}

.home-page .header-actions {
  grid-area: actions;
  min-height: 7.35rem;
  align-items: center;
  gap: 1.25rem;
  padding-left: 1.5rem;
}

.header-contact-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.95rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 750;
}

.header-contact-group a,
.header-contact-group span {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.header-contact-group a:hover,
.header-contact-group a:focus-visible {
  color: var(--primary);
}

.home-page .header-contact-group {
  gap: 1.15rem;
}

.home-page .contact-pill {
  display: none;
}

.home-page .button.primary.small {
  min-height: 3.15rem;
  padding-inline: 1.4rem;
  background: var(--primary);
  color: #fff;
}

.home-page .site-nav {
  grid-area: nav;
  justify-content: flex-start;
  min-height: 3.85rem;
  gap: 0.35rem;
  padding-left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #101010;
}

.home-page .site-nav a {
  min-height: 3.85rem;
  display: inline-flex;
  align-items: center;
  padding: 0 1.25rem;
  border-radius: 0;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-page .site-nav a:hover,
.home-page .site-nav a.active {
  color: var(--primary);
  background: transparent;
  box-shadow: inset 0 -3px 0 var(--primary);
}

.home-page .hero {
  padding: 4.5rem 0 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 78% 32%, rgba(255, 106, 0, 0.14), transparent 24rem),
    #020202;
  background-size: 4rem 4rem, 4rem 4rem, auto, auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-page .hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: clamp(2rem, 4vw, 4.25rem);
  align-items: center;
  padding-bottom: 3.5rem;
}

.home-page .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 37rem;
}

.home-page .hero .eyebrow {
  margin-bottom: 1.1rem;
  color: var(--primary);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
}

.home-page .hero h1 {
  display: grid;
  gap: 0.02em;
  margin: 0;
  color: #fff;
  font-size: clamp(3.05rem, 4.15vw, 4.45rem);
  font-weight: 1000;
  line-height: 0.96;
  text-transform: uppercase;
}

.home-page .hero h1 span {
  display: block;
}

.home-page .hero p {
  max-width: 34rem;
  margin: 1.5rem 0 2rem;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 650;
}

.home-page .hero-actions {
  gap: 1rem;
}

.home-page .button.large,
.home-page .hero-actions .button {
  min-height: 3.7rem;
  padding-inline: 1.8rem;
  font-size: 0.95rem;
}

.home-page .button.secondary {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.42);
}

.home-page .hero-proof {
  margin-top: 1.15rem;
}

.home-page .hero-proof span {
  border-radius: 0;
  border-color: rgba(255, 106, 0, 0.28);
  background: rgba(255, 106, 0, 0.08);
  color: #fff;
}

.home-page .hero-frame {
  min-height: clamp(25rem, 38vw, 31rem);
  max-width: 39rem;
  margin-left: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 56% 72%, rgba(255, 106, 0, 0.22), transparent 22rem),
    transparent;
  box-shadow: none;
}

.home-page .hero-frame img {
  width: 100%;
  height: clamp(25rem, 38vw, 31rem);
  padding: 0;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.45));
}

.home-page .hero-tag {
  position: relative;
  left: auto;
  bottom: auto;
  max-width: 18rem;
  margin: -2.4rem 0 0 auto;
  border-color: rgba(255, 106, 0, 0.8);
  background: rgba(0, 0, 0, 0.72);
}

.home-page .hero-tag strong {
  color: var(--primary);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.home-page .hero-tag span {
  color: #fff;
}

.hero-service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-service-strip div {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  column-gap: 0.95rem;
  align-items: start;
  min-height: 6.5rem;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
}

.hero-service-strip div:last-child {
  border-right: 0;
}

.service-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(255, 106, 0, 0.58);
  border-radius: 50%;
  color: var(--primary);
  font-weight: 950;
}

.hero-service-strip strong {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-service-strip p {
  grid-column: 2;
  margin: 0.25rem 0 0;
  color: var(--muted-strong);
  font-size: 0.86rem;
  line-height: 1.4;
}

.section-pathway {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  background: #0a0c0f;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(13rem, 0.7fr);
  gap: 0.8rem;
  align-items: stretch;
}

.pathway-grid article,
.pathway-action {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.pathway-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.8rem;
  align-items: start;
}

.pathway-grid article span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 6px;
  color: #121212;
  background: var(--accent);
  font-weight: 950;
}

.pathway-grid h2 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.pathway-grid p {
  grid-column: 2;
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.pathway-action {
  display: grid;
  gap: 0.85rem;
  align-content: center;
}

.pathway-action strong {
  color: #fff;
  line-height: 1.25;
}

.home-page .brand-logo {
  animation: logoSettle 0.85s ease both;
}

.home-page .hero .eyebrow,
.home-page .hero h1 span,
.home-page .hero p,
.home-page .hero-actions,
.home-page .hero-proof {
  animation: heroRise 0.8s ease both;
}

.home-page .hero .eyebrow {
  animation-delay: 0.05s;
}

.home-page .hero h1 span:nth-child(1) {
  animation-delay: 0.12s;
}

.home-page .hero h1 span:nth-child(2) {
  animation-delay: 0.2s;
}

.home-page .hero h1 span:nth-child(3) {
  animation-delay: 0.28s;
}

.home-page .hero h1 span:nth-child(4) {
  animation-delay: 0.36s;
}

.home-page .hero p {
  animation-delay: 0.44s;
}

.home-page .hero-actions {
  animation-delay: 0.52s;
}

.home-page .hero-proof {
  animation-delay: 0.6s;
}

.home-page .hero-frame {
  animation: machineReveal 0.9s ease 0.22s both, machineFloat 5.5s ease-in-out 1.15s infinite;
}

.home-page .hero-frame::after {
  display: none;
}

.hero-service-strip div {
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.hero-service-strip div:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.38);
  background: rgba(255, 106, 0, 0.08);
}

.button.primary {
  position: relative;
  overflow: hidden;
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.button.primary:hover::after {
  transform: translateX(120%);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoSettle {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes machineFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes proofGlow {
  0%,
  100% {
    border-color: rgba(255, 122, 20, 0.32);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  }
  50% {
    border-color: rgba(255, 122, 20, 0.78);
    box-shadow: 0 16px 34px rgba(255, 122, 20, 0.22);
  }
}

@keyframes machineReveal {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes machineFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes imageSweep {
  0%,
  42% {
    transform: translateX(-130%);
  }
  58%,
  100% {
    transform: translateX(130%);
  }
}

.section {
  padding: 5.1rem 0;
  position: relative;
}

.section-pillars,
.section-light,
.section-contact {
  background: rgba(255, 255, 255, 0.015);
}

.section-about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(233, 67, 53, 0.045));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-featured,
.section-dark {
  background: linear-gradient(180deg, #080a0c, #0f1217);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-highlight {
  background: linear-gradient(135deg, rgba(233, 67, 53, 0.18), rgba(255, 255, 255, 0.02));
}

.section-buyer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(243, 179, 61, 0.045)),
    #080a0c;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-onsite-gallery {
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
  background: #07090b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--border);
}

.section-heading,
.section-header {
  margin-bottom: 1.8rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.section-heading h2,
.section-header h1,
.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-heading > div,
.section-header {
  max-width: 760px;
}

.section-heading p,
.section-header p {
  max-width: var(--content-width);
  margin: 0.85rem 0 0;
  color: var(--muted-strong);
  font-size: 1.02rem;
  line-height: 1.7;
}

.gallery-heading {
  align-items: center;
}

.gallery-heading h2 {
  max-width: 42rem;
}

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

.onsite-gallery-single {
  grid-template-columns: 1fr;
}

.onsite-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111417;
  aspect-ratio: 16 / 10;
  box-shadow: 0 1.3rem 3rem rgba(0, 0, 0, 0.32);
}

.onsite-photo-collage {
  aspect-ratio: 16 / 9;
}

.onsite-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 220ms ease, filter 220ms ease;
}

.onsite-photo:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.05);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.buyer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: stretch;
}

.buyer-layout .section-header {
  margin-bottom: 0;
}

.buyer-layout .section-header p {
  max-width: 42rem;
  color: var(--muted-strong);
  font-size: 1.04rem;
}

.buyer-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 8px;
}

.support-metric {
  display: grid;
  gap: 0.45rem;
  min-height: 8.5rem;
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
}

.support-metric strong {
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
}

.support-metric span {
  color: #fff;
  font-weight: 850;
  line-height: 1.25;
}

.about-layout h2,
.cta-layout h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.about-copy p {
  margin-top: 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.about-stats div {
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft);
}

.about-stats strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.about-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}


.pillar-grid,
.featured-grid,
.service-list,
.cards-grid,
.machine-gallery {
  display: grid;
  gap: 1.1rem;
}

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

.pillar-card {
  display: flex;
  gap: 1rem;
  padding: 1.45rem;
  border-radius: 8px;
  min-height: 9.5rem;
}

.tile-icon {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(233, 67, 53, 0.14);
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.pillar-card h3,
.feature-card h3,
.service-card h3,
.contact-card h3,
.product-card h3 {
  color: #fff;
}

.pillar-card h3 {
  margin: 0;
  font-size: 1rem;
}

.pillar-card p {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
}

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
  align-items: stretch;
}

.feature-card,
.product-card {
  position: relative;
  padding: 1.45rem;
  border-radius: 8px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 67, 53, 0.5);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.4);
}

.feature-card.featured-main {
  border-color: rgba(233, 67, 53, 0.7);
  box-shadow: 0 20px 70px rgba(233, 67, 53, 0.12), 0 18px 56px rgba(0, 0, 0, 0.42);
}

.choice-header {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.choice-header span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.choice-header strong {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.choice-header-highlight {
  border-color: rgba(233, 67, 53, 0.48);
  background: rgba(233, 67, 53, 0.12);
}

.feature-image,
.machine-image {
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: radial-gradient(circle at center, #1a1f25 0%, #07090b 68%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-image {
  min-height: 310px;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.4rem;
}

.feature-image img,
.machine-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}

.machine-photo {
  background: #101316;
}

.machine-photo img {
  object-fit: cover;
  padding: 0;
}

.feature-card-dumper .machine-photo,
.model-media-photo,
.dumper-product-gallery .skid-main-photo {
  background: #f5f6f7;
}

.feature-card-dumper .machine-photo img,
.model-media-photo img,
.dumper-product-gallery .skid-main-photo img {
  object-fit: contain;
  padding: 0.35rem;
}

.skid-product-section {
  padding-top: clamp(2.8rem, 5vw, 4.5rem);
}

.skid-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(1.4rem, 3.2vw, 2.8rem);
  align-items: start;
}

.skid-product-gallery,
.skid-product-info,
.skid-spec-panel {
  min-width: 0;
}

.skid-main-photo,
.skid-thumb-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: rgba(8, 10, 12, 0.88);
}

.skid-main-photo {
  position: relative;
}

.skid-main-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.skid-main-photo figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  background: rgba(5, 6, 7, 0.82);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skid-thumb-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.skid-thumb-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.skid-thumb-strip figure:last-child img {
  object-fit: contain;
  padding: 0.45rem;
  background:
    linear-gradient(135deg, rgba(111, 135, 152, 0.16), transparent 38%),
    radial-gradient(circle at center, #1b2128 0%, #07090b 70%);
}

.skid-thumb-strip figcaption {
  padding: 0.55rem 0.6rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.skid-product-info {
  padding: clamp(1.1rem, 2.2vw, 1.6rem);
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: rgba(8, 10, 12, 0.72);
}

.skid-product-info h1 {
  margin: 0.35rem 0 0.85rem;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 0.98;
}

.skid-product-info h1 span {
  display: block;
}

.skid-product-info p,
.skid-spec-heading p {
  margin: 0;
  color: var(--muted-strong);
}

.skid-key-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.skid-key-specs div {
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.skid-key-specs span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skid-key-specs strong {
  display: block;
  margin-top: 0.2rem;
  color: #fff;
  font-size: 0.98rem;
}

.skid-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.skid-feature-list li {
  position: relative;
  padding: 0.65rem 0.7rem 0.65rem 1.75rem;
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

.skid-feature-list li::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 0.98rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.skid-product-actions {
  margin-top: 1.25rem;
  padding-top: 0;
}

.skid-spec-section {
  background: #080a0c;
}

.skid-spec-heading {
  max-width: 52rem;
  margin-bottom: 1.2rem;
}

.skid-spec-heading h2 {
  margin: 0.75rem 0 0.5rem;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1;
}

.skid-spec-panel {
  padding: clamp(0.9rem, 2vw, 1.25rem);
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(8, 10, 12, 0.88);
}

.feature-image-trio {
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.55rem;
}

.feature-image-trio img {
  min-width: 0;
  min-height: 0;
  padding: 0.35rem;
  border-radius: 6px;
  background: #101214;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-image-trio img:first-child {
  grid-row: span 2;
}

.model-media {
  display: grid;
  place-items: center;
  min-height: 340px;
  aspect-ratio: 4 / 3;
  margin: 1.2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: radial-gradient(circle at center, #1a1f25 0%, #07090b 68%);
  overflow: hidden;
}

.model-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  padding: 1rem;
}

.model-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem 0 1.2rem;
}

.model-thumb-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: radial-gradient(circle at center, #1a1f25 0%, #07090b 68%);
}

.model-thumb-photo-grid img {
  object-fit: cover;
  padding: 0;
}

.model-thumb-grid[aria-label="ME60U machine-only photo gallery"] img {
  background: #f7f7f4;
}

.video-preview-grid,
.product-video-grid {
  display: grid;
  gap: 0.75rem;
}

.video-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1rem 0;
}

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

.video-preview-grid video,
.product-video-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #050607;
  object-fit: cover;
}

.video-section {
  padding-top: 1rem;
}

.brochure-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin: 1.2rem 0;
  padding: 1.15rem;
  border: 1px solid rgba(243, 179, 61, 0.32);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(243, 179, 61, 0.12), rgba(255, 255, 255, 0.035));
}

.brochure-panel .eyebrow {
  margin-bottom: 0.45rem;
}

.brochure-panel h4 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
}

.brochure-panel p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.spec-highlight-panel {
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.75fr) auto;
  align-items: start;
}

.mini-spec-list {
  display: grid;
  gap: 0.5rem;
  min-width: 12rem;
}

.mini-spec-list span {
  display: grid;
  gap: 0.1rem;
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
}

.mini-spec-list strong {
  color: #fff;
  font-size: 0.95rem;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0;
}

.spec-strip span {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.78rem;
}

.spec-strip strong {
  color: #fff;
  font-size: 0.95rem;
}

.catalog-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.4rem 0 1.7rem;
}

.catalog-decision-grid a {
  display: grid;
  gap: 0.25rem;
  min-height: 7.5rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.catalog-decision-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(233, 67, 53, 0.55);
  background: rgba(233, 67, 53, 0.11);
}

.catalog-decision-grid span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.catalog-decision-grid strong {
  color: #fff;
  font-size: 1.05rem;
}

.catalog-decision-grid small {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-badge,
.savings-badge,
.badge-popular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-badge {
  padding: 0.38rem 0.7rem;
  color: #fff;
  background: rgba(233, 67, 53, 0.95);
}

.savings-badge,
.badge-popular {
  padding: 0.45rem 0.75rem;
  margin-bottom: 0.6rem;
}

.savings-badge {
  color: #121212;
  background: var(--accent);
}

.badge-popular {
  display: flex;
  width: fit-content;
  color: #fff;
  background: var(--primary);
}

.feature-card h3,
.product-card h3 {
  margin: 0.9rem 0 0.45rem;
  font-size: 1.28rem;
  line-height: 1.18;
}

.feature-card p,
.product-card p {
  margin: 0 0 1rem;
  color: var(--muted-strong);
  line-height: 1.62;
}

.feature-card ul,
.product-card ul,
.card-section ul {
  margin: 0;
  padding: 0;
  color: var(--muted-strong);
  list-style: none;
}

.feature-card li,
.product-card li,
.card-section li {
  position: relative;
  margin-bottom: 0.55rem;
  padding-left: 1.35rem;
  line-height: 1.45;
}

.feature-card li::before,
.product-card li::before,
.card-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(243, 179, 61, 0.12);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.45rem;
  margin-top: auto;
  padding-top: 1.35rem;
}

.sample-gallery {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.sample-gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.sample-gallery-heading .eyebrow {
  margin-bottom: 0.45rem;
}

.sample-gallery-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

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

.sample-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  overflow: hidden;
}

.sample-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 1rem;
  background: radial-gradient(circle at center, #1a1f25 0%, #07090b 68%);
}

.sample-card figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted-strong);
  font-weight: 800;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

.service-grid,
.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

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

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

.service-card,
.contact-card {
  padding: 1.65rem;
  border-radius: 8px;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 13rem;
}

.service-card h3,
.contact-card h3 {
  margin: 0 0 0.65rem;
}

.service-card p,
.contact-card p,
.contact-card a {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.contact-card a {
  color: #fff;
  text-decoration: none;
}

.service-card a {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--accent);
  font-weight: 850;
  text-decoration: none;
}

.contact-layout {
  grid-template-columns: 1.15fr 0.85fr;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.process-card {
  padding: 1.35rem;
  border-radius: 8px;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-card h3,
.buyer-checklist h3,
.support-checklist h3 {
  margin: 0;
  color: #fff;
}

.process-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.support-checklist,
.buyer-checklist {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.5rem;
  padding: 1.35rem;
  border: 1px solid rgba(243, 179, 61, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(243, 179, 61, 0.1), rgba(255, 255, 255, 0.035));
}

.support-checklist .eyebrow,
.buyer-checklist .eyebrow {
  margin-bottom: 0.45rem;
}

.support-checklist ul,
.buyer-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-checklist li,
.buyer-checklist li {
  position: relative;
  min-height: 3.2rem;
  padding: 0.8rem 0.85rem 0.8rem 2.1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--muted-strong);
  font-weight: 750;
}

.support-checklist li::before,
.buyer-checklist li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 1.15rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(233, 67, 53, 0.14);
}

.contact-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-benefits {
  display: grid;
  gap: 0.7rem;
  max-width: 35rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-benefits li {
  position: relative;
  padding: 0.8rem 0.95rem 0.8rem 2.35rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-weight: 750;
}

.contact-benefits li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.15rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(233, 67, 53, 0.14);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 0.82rem 0.9rem;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(233, 67, 53, 0.75);
  box-shadow: 0 0 0 3px rgba(233, 67, 53, 0.14);
}

.contact-form textarea {
  resize: vertical;
}

.contact-details {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.ai-enquiry {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 0.8rem;
}

.ai-enquiry-toggle {
  display: grid;
  gap: 0.05rem;
  min-width: 8.6rem;
  border: 1px solid rgba(233, 67, 53, 0.55);
  border-radius: 8px;
  background: rgba(10, 12, 14, 0.94);
  color: #fff;
  padding: 0.72rem 0.85rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
  text-align: left;
}

.ai-enquiry-toggle span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.86;
}

.ai-enquiry-toggle strong {
  font-size: 0.92rem;
}

.ai-enquiry-panel {
  display: none;
  width: min(360px, calc(100vw - 2rem));
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: rgba(8, 10, 12, 0.97);
  box-shadow: 0 28px 85px rgba(0, 0, 0, 0.58);
  overflow: hidden;
}

.ai-enquiry.open .ai-enquiry-panel {
  display: block;
}

.ai-enquiry-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(233, 67, 53, 0.22), rgba(255, 255, 255, 0.035));
}

.ai-enquiry-header span {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-enquiry-header h3 {
  margin: 0.1rem 0 0;
  color: #fff;
}

.ai-enquiry-close {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}

.ai-chat,
.ai-enquiry-form,
.ai-note {
  margin: 1rem;
}

.ai-message {
  padding: 0.9rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.ai-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.ai-options button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  padding: 0.48rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.ai-options button.active,
.ai-options button:hover {
  border-color: rgba(243, 179, 61, 0.75);
  color: var(--accent);
}

.ai-enquiry-form {
  display: grid;
  gap: 0.75rem;
}

.ai-enquiry-form label {
  display: grid;
  gap: 0.32rem;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 800;
}

.ai-enquiry-form input,
.ai-enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  padding: 0.78rem 0.85rem;
}

.ai-enquiry-form textarea {
  resize: vertical;
}

.ai-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 2rem 0;
  background: #030405;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--primary);
}

.machine-gallery {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}

.machine-view-card {
  padding: 1rem;
  text-align: center;
  border-radius: 8px;
}

.machine-image {
  min-height: 380px;
  aspect-ratio: 4 / 3;
}

.machine-view-card h4 {
  margin: 1rem 0 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
}

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

.model-comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.model-card {
  height: 100%;
}

.model-card.featured-main {
  border-color: rgba(233, 67, 53, 0.7);
}

.model-card-header p {
  margin-bottom: 0;
}

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

.spec-table div {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.spec-table span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-table strong {
  color: #fff;
  font-size: 0.95rem;
}

.product-card.me359-expanded {
  grid-column: 1 / -1;
}

.card-section {
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.card-section h4 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.technical-panel {
  margin-top: 1.8rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

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

.parameter-table {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.16);
}

.parameter-table.wide {
  grid-column: span 3;
}

.parameter-table h3 {
  margin: 0;
  padding: 0.75rem 0.85rem;
  color: #fff;
  background: rgba(255, 106, 0, 0.22);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.parameter-table dl {
  display: grid;
  margin: 0;
}

.parameter-table div {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  border-top: 1px solid var(--border);
}

.parameter-table dt,
.parameter-table dd {
  margin: 0;
}

.parameter-table dt {
  color: var(--muted);
}

.parameter-table dd {
  color: #fff;
  font-weight: 750;
  text-align: right;
}

@media (max-width: 980px) {
  .home-page .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
  }

  .home-page .brand {
    min-height: 6.5rem;
    justify-content: flex-start;
  }

  .home-page .brand-logo {
    width: 10.5rem;
    height: 4.4rem;
  }

  .home-page .header-actions {
    min-height: 6.5rem;
  }

  .home-page .header-contact-group {
    display: none;
  }

  .header-contact-group {
    display: none;
  }

  .home-page .hero-grid,
  .hero-service-strip {
    grid-template-columns: 1fr;
  }

  .home-page .hero-grid {
    gap: 2.5rem;
  }

  .hero-service-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-service-strip div:last-child {
    border-bottom: 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    min-height: 0;
  }

  .brand {
    grid-area: brand;
  }

  .site-nav {
    grid-area: nav;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-actions {
    grid-area: actions;
  }

  .hero-grid,
  .pillar-grid,
  .onsite-gallery-grid,
  .pathway-grid,
  .featured-grid,
  .sample-grid,
  .service-grid,
  .contact-layout,
  .cards-grid,
  .about-layout,
  .cta-layout,
  .model-comparison,
  .technical-grid,
  .buyer-layout,
  .process-grid,
  .support-checklist,
  .buyer-checklist,
  .catalog-decision-grid {
    grid-template-columns: 1fr;
  }

  .parameter-table.wide {
    grid-column: auto;
  }

  .brochure-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 780px) {
  .home-page .header-inner {
    grid-template-areas:
      "brand toggle"
      "actions actions"
      "nav nav";
  }

  .home-page .brand {
    min-height: 5.8rem;
    padding: 0.8rem 0;
    border-width: 0;
  }

  .home-page .brand-logo {
    width: 9.75rem;
    height: 4.15rem;
  }

  .home-page .header-actions {
    min-height: 0;
    padding: 0 0 0.9rem;
  }

  .home-page .button.primary.small {
    width: 100%;
  }

  .home-page .site-nav {
    min-height: 0;
    padding: 0.65rem 0;
  }

  .home-page .site-nav a {
    min-height: 2.6rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
  }

  .home-page .hero {
    padding-top: 3rem;
  }

  .home-page .hero h1 {
    font-size: 3.2rem;
  }

  .home-page .hero-frame {
    min-height: 23rem;
    max-width: 34rem;
    margin: 0 auto;
    border-radius: 18px;
  }

  .home-page .hero-frame img {
    height: 19rem;
  }

  .header-inner,
  .nav-bar {
    align-items: stretch;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "actions actions"
      "nav nav";
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-pill {
    text-align: center;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    grid-area: toggle;
    align-self: center;
    justify-self: end;
  }

  .header-inner {
    position: relative;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-start;
  }

  .header-inner .site-nav {
    display: none;
    padding-right: 0;
  }

  .header-inner .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-highlights,
  .machine-gallery,
  .pathway-grid article,
  .service-list,
  .about-stats,
  .buyer-panel,
  .support-checklist ul,
  .buyer-checklist ul,
  .spec-strip,
  .spec-table,
  .model-thumb-grid,
  .video-preview-grid,
  .product-video-grid,
  .parameter-table div {
    grid-template-columns: 1fr;
  }

  .pathway-grid p {
    grid-column: auto;
  }

  .parameter-table dd {
    text-align: left;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 300px;
  }

  .hero-frame img {
    height: 320px;
  }

  .feature-image,
  .model-media,
  .machine-image {
    min-height: 260px;
  }

  .sample-gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 9.5rem;
    height: 4rem;
  }
}

@media (max-width: 520px) {
  .home-page .hero h1 {
    font-size: 2.6rem;
  }

  .home-page .hero p {
    font-size: 1rem;
  }

  .home-page .hero-frame {
    min-height: 19rem;
  }

  .home-page .hero-frame img {
    height: 19rem;
  }

  .home-page .hero-tag {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    max-width: none;
  }

  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .brand-logo {
    width: 8rem;
    height: 3.35rem;
  }

  .brand-title {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .brand p {
    font-size: 0.72rem;
    white-space: normal;
  }

  .button {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .sample-grid {
    grid-template-columns: 1fr;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .onsite-photo {
    aspect-ratio: 4 / 3;
  }

  .onsite-photo-collage {
    aspect-ratio: 1 / 1;
  }

  .sample-card img {
    height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Visual polish pass - premium equipment showroom feel */
:root {
  --steel: #6f8798;
  --copper: #ff7a14;
  --panel-line: rgba(255, 255, 255, 0.18);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 122, 20, 0.06), transparent 22rem),
    linear-gradient(135deg, #050607 0%, #0a0d11 42%, #030405 100%);
}

.home-page main {
  display: flex;
  flex-direction: column;
}

.home-page #products {
  order: 3;
}

.home-page .seo-summary {
  order: 4;
}

.home-page #services {
  order: 5;
}

.home-page #buyer-support {
  order: 6;
}

.home-page #about {
  order: 7;
}

.home-page #contact {
  order: 8;
}

.home-page .finance-highlight {
  order: 2;
}

.home-page .section-pathway,
.home-page #onsite-gallery,
.home-page .section-pillars,
.home-page .process-grid,
.home-page .sample-gallery {
  display: none;
}

.site-header {
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.home-page .site-header {
  background: rgba(3, 3, 3, 0.96);
}

.home-page .brand {
  background:
    linear-gradient(135deg, rgba(255, 122, 20, 0.12), transparent 45%),
    #050505;
}

.home-page .site-nav {
  background: linear-gradient(180deg, #151515, #0d0d0d);
}

body:not(.home-page) .header-inner {
  min-height: 5.8rem;
  grid-template-columns: minmax(240px, auto) minmax(0, 1fr) auto;
  gap: 1rem;
}

body:not(.home-page) .brand {
  padding: 0.45rem 0.75rem 0.45rem 0.45rem;
}

body:not(.home-page) .brand-logo {
  width: 8.6rem;
  height: 3.6rem;
}

body:not(.home-page) .brand-title {
  font-size: 0.92rem;
  letter-spacing: 0.11em;
}

body:not(.home-page) .brand p {
  font-size: 0.78rem;
}

body:not(.home-page) .header-contact-group {
  display: none;
}

body:not(.home-page) .site-nav {
  justify-content: center;
  flex-wrap: nowrap;
}

.machines-page .catalog-intro {
  max-width: none;
}

.machines-page .catalog-intro > p {
  max-width: 46rem;
}

.machines-page .catalog-intro > .machine-gallery {
  display: none;
}

.machines-page .catalog-decision-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-bottom: 0;
}

.machines-page .model-comparison {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  align-items: stretch;
}

.machines-page .product-card {
  padding: 1rem;
}

.machines-page .product-card.featured-main {
  grid-column: auto;
}

.machines-page .model-media {
  min-height: 210px;
  aspect-ratio: 4 / 3;
}

.model-media-photo img {
  object-fit: contain;
  padding: 0.35rem;
}

.machines-page .model-thumb-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.machines-page .spec-table {
  grid-template-columns: 1fr;
}

.machines-page .spec-table div:nth-child(n+7),
.machines-page .card-section,
.machines-page .brochure-panel,
.machines-page .video-section,
.machines-page .product-video-grid,
.machines-page .mini-spec-list {
  display: none;
}

.machines-page .btn-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.machines-page .btn-row .button:nth-child(n+4) {
  display: none;
}

.home-page .featured-grid .feature-card:nth-child(1),
.machines-page .catalog-decision-grid a:nth-child(1),
.machines-page .model-comparison .model-card:nth-child(1) {
  order: 1;
}

.home-page .featured-grid .feature-card:nth-child(5) {
  order: 2;
}

.home-page .featured-grid .feature-card:nth-child(2),
.machines-page .catalog-decision-grid a:nth-child(2),
.machines-page .model-comparison .model-card:nth-child(4) {
  order: 3;
}

.home-page .featured-grid .feature-card:nth-child(4) {
  order: 4;
}

.home-page .featured-grid .feature-card:nth-child(3) {
  display: none;
}

.machines-page .catalog-decision-grid a:nth-child(3),
.machines-page .model-comparison .model-card:nth-child(5) {
  order: 3;
}

.machines-page .catalog-decision-grid a:nth-child(5),
.machines-page .model-comparison .model-card:nth-child(3) {
  order: 4;
}

.machines-page .catalog-decision-grid a:nth-child(4),
.machines-page .model-comparison .model-card:nth-child(2) {
  order: 5;
}

.header-contact-group a {
  position: relative;
}

.header-contact-group a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--primary);
  transition: transform 180ms ease;
}

.header-contact-group a:hover::after,
.header-contact-group a:focus-visible::after {
  transform: scaleX(1);
}

.home-page .hero {
  position: relative;
  min-height: auto;
  padding: 4rem 0 3rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 36%, rgba(0, 0, 0, 0.34) 74%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    #020202;
  background-size: auto, 4rem 4rem, 4rem 4rem, auto;
}

.home-page .hero .eyebrow,
.home-page .hero h1 span,
.home-page .hero p,
.home-page .hero-actions,
.home-page .hero-proof,
.home-page .hero-frame {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.home-page .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--steel));
}

.hero h1,
.section-header h1,
.section-header h2,
.section-heading h2 {
  text-wrap: balance;
}

.home-page .hero h1 {
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
}

.home-page .hero-frame {
  animation: machineFloat 5.8s ease-in-out infinite;
}

.home-page .hero p {
  max-width: 37rem;
  color: #eef2f6;
}

.home-page .hero-actions .button:nth-child(n+3) {
  display: none;
}

.home-page .hero-proof {
  max-width: 42rem;
}

.home-page .hero-proof span {
  padding: 0.55rem 0.7rem;
}

.home-page .hero-proof span:nth-child(3),
.home-page .hero-proof span:nth-child(4) {
  animation: proofGlow 3.6s ease-in-out infinite;
}

.home-page .hero-proof span:nth-child(4) {
  animation-delay: 0.7s;
}

.home-page .finance-highlight {
  padding: 2rem 0;
  background:
    linear-gradient(90deg, rgba(255, 122, 20, 0.18), rgba(233, 67, 53, 0.08) 42%, rgba(255, 255, 255, 0.035)),
    #0b0d0f;
  border-top: 1px solid rgba(255, 122, 20, 0.34);
  border-bottom: 1px solid rgba(255, 122, 20, 0.26);
}

.finance-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr) auto;
  gap: 1.1rem;
  align-items: center;
}

.finance-highlight h2 {
  margin: 0.35rem 0 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  text-wrap: balance;
}

.finance-option-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.finance-option-list article {
  min-height: 8rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.finance-option-list strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.finance-option-list p {
  margin: 0;
  color: #d9e0e6;
  font-size: 0.88rem;
  line-height: 1.48;
}

.home-page .section-featured {
  padding-top: 3.5rem;
}

.home-page .featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
}

.product-jump-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 122, 20, 0.45);
  border-radius: 6px;
  background: rgba(255, 122, 20, 0.1);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-jump-links a:first-child,
.home-page .feature-card-dumper {
  border-color: rgba(255, 122, 20, 0.75);
  box-shadow: 0 0 0 1px rgba(255, 122, 20, 0.18);
}

.product-jump-links a.is-active {
  background: linear-gradient(135deg, #ff6a00, #e94335);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 16px 32px rgba(233, 67, 53, 0.28);
}

.home-page .feature-card {
  padding: 1rem;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(255, 122, 20, 0.18), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #101316;
  border: 1px solid rgba(255, 255, 255, 0.13);
  will-change: transform;
}

.home-page .feature-card.featured-main,
.home-page .feature-card-dumper,
.home-page #mini-skid-steer {
  border-color: rgba(255, 122, 20, 0.34);
}

.home-page .choice-header {
  margin-bottom: 0.75rem;
  padding: 0.65rem;
}

.home-page .feature-image {
  min-height: 190px;
  margin-bottom: 1rem;
  background: #060708;
  border-radius: 8px;
}

.feature-image-link {
  position: relative;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.feature-image-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.22) 42%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.feature-image-link::after {
  content: "View details";
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(255, 122, 20, 0.55);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 2;
}

.feature-image-link:hover,
.feature-image-link:focus-visible {
  border-color: rgba(255, 122, 20, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 20, 0.18), 0 20px 46px rgba(0, 0, 0, 0.38);
}

.feature-image-link:hover::before,
.feature-image-link:focus-visible::before {
  transform: translateX(130%);
}

.feature-image-link:hover::after,
.feature-image-link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.home-page .feature-card h3 {
  font-size: 1.15rem;
}

.home-page .feature-card p {
  font-size: 0.9rem;
  line-height: 1.48;
}

.home-page .feature-card ul,
.home-page .video-preview-grid,
.home-page .badge-popular,
.home-page .savings-badge {
  display: none;
}

.home-page .spec-strip {
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.home-page .feature-card .btn-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  padding-top: 1rem;
}

.home-page .feature-card .btn-row .button:nth-child(n+3) {
  display: none;
}

.home-page .seo-summary {
  padding: 2.75rem 0;
  background: #f5f6f7;
  color: #141414;
}

.seo-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.seo-summary h2 {
  margin: 0.35rem 0 0;
  color: #111;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.05;
  text-wrap: balance;
}

.seo-summary-copy {
  display: grid;
  gap: 0.85rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

.seo-summary-copy p {
  margin: 0;
}

.hero-visual,
.home-page .hero-visual {
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.55));
}

.hero-machine-card,
.home-page .hero-machine-card {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(255, 122, 20, 0.08), transparent);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
}

.button {
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.button.primary {
  background: linear-gradient(135deg, #ff6a00, #e94335);
  box-shadow: 0 18px 38px rgba(233, 67, 53, 0.34);
}

.button.primary:hover {
  background: linear-gradient(135deg, #ff7f1f, #ff4b3b);
}

.button.secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
}

.button.secondary:hover {
  background: rgba(255, 122, 20, 0.12);
}

.hero-proof span,
.product-badge,
.savings-badge,
.badge-popular {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.section {
  isolation: isolate;
}

.section-header,
.section-heading > div {
  position: relative;
}

.section-header::before,
.section-heading > div::before {
  content: "";
  display: block;
  width: 4.5rem;
  height: 4px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pillar-card,
.feature-card,
.service-card,
.contact-card,
.product-card,
.machine-view-card,
.process-card,
.buyer-panel,
.buyer-checklist,
.support-checklist {
  border-color: var(--panel-line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(8, 10, 12, 0.88);
}

.feature-card::before,
.product-card::before,
.service-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border-top: 3px solid rgba(255, 122, 20, 0.62);
  opacity: 0.72;
}

.feature-card:hover,
.product-card:hover,
.service-card:hover,
.machine-view-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 20, 0.55);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.feature-image,
.machine-image,
.model-media {
  background:
    linear-gradient(135deg, rgba(111, 135, 152, 0.16), transparent 38%),
    radial-gradient(circle at center, #1b2128 0%, #07090b 70%);
  border-color: rgba(255, 255, 255, 0.14);
}

.feature-image img,
.machine-image img,
.model-media img {
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.42));
  transition: transform 220ms ease, filter 220ms ease;
}

.feature-card:hover .feature-image img,
.product-card:hover .machine-image img,
.model-card:hover .model-media img {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.48));
}

.spec-strip span,
.spec-table div,
.parameter-table div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.18);
}

.contact-card {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(2, 3, 4, 0.42);
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(255, 122, 20, 0.08), transparent 38%),
    #030405;
}

.featured-grid,
.model-comparison {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.skid-steer-visual {
  min-height: 310px;
  background:
    linear-gradient(135deg, rgba(255, 122, 20, 0.22), transparent 34%),
    radial-gradient(circle at 55% 42%, rgba(255, 255, 255, 0.24), transparent 0.4rem),
    radial-gradient(circle at 46% 58%, #1f252b 0 1.85rem, transparent 1.9rem),
    radial-gradient(circle at 64% 58%, #1f252b 0 1.85rem, transparent 1.9rem),
    linear-gradient(14deg, transparent 0 34%, #b8c3ca 35% 45%, #2b3036 46% 58%, transparent 59%),
    linear-gradient(162deg, transparent 0 40%, #d8dde2 41% 48%, transparent 49%),
    linear-gradient(180deg, #171b21, #07090b);
}

.skid-steer-visual-alt {
  background:
    linear-gradient(135deg, rgba(111, 135, 152, 0.22), transparent 38%),
    radial-gradient(circle at 45% 58%, #1f252b 0 1.7rem, transparent 1.75rem),
    radial-gradient(circle at 60% 58%, #1f252b 0 1.7rem, transparent 1.75rem),
    linear-gradient(14deg, transparent 0 32%, #c5ccd1 33% 44%, #2b3036 45% 58%, transparent 59%),
    linear-gradient(180deg, #171b21, #07090b);
}

.skid-steer-visual-alt-2 {
  background:
    linear-gradient(135deg, rgba(233, 67, 53, 0.22), transparent 38%),
    radial-gradient(circle at 52% 58%, #1f252b 0 2.2rem, transparent 2.25rem),
    linear-gradient(14deg, transparent 0 34%, #d8dde2 35% 46%, #20252b 47% 60%, transparent 61%),
    linear-gradient(180deg, #171b21, #07090b);
}

.skid-steer-visual > div {
  display: grid;
  gap: 0.35rem;
  place-items: center;
  min-width: min(86%, 19rem);
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(2, 3, 4, 0.62);
  text-align: center;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}

.skid-steer-visual span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.skid-steer-visual strong {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  line-height: 1;
}

.skid-steer-visual small {
  color: var(--muted-strong);
  font-weight: 800;
}

/* Final phone layout pass. Keep this after the enhancement rules above. */
@media (max-width: 780px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 1.2rem, 1180px);
  }

  .site-header {
    position: sticky;
  }

  .header-inner,
  .home-page .header-inner {
    min-height: 0;
    padding: 0.65rem 0;
    gap: 0.65rem;
    grid-template-columns: minmax(0, 1fr) 2.75rem;
    grid-template-areas:
      "brand toggle"
      "actions actions"
      "nav nav";
  }

  .brand,
  .home-page .brand {
    width: 100%;
    min-height: 0;
    padding: 0.45rem 0;
    gap: 0.65rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .brand-logo,
  .home-page .brand-logo {
    width: 6.9rem;
    height: 2.9rem;
    flex: 0 0 auto;
  }

  .brand-title {
    font-size: 0.78rem;
    line-height: 1.1;
    white-space: normal;
  }

  .brand p {
    display: none;
  }

  .nav-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }

  .header-actions,
  .home-page .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    width: 100%;
    padding: 0;
  }

  .header-actions .contact-pill,
  .header-actions .button,
  .home-page .button.primary.small {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.72rem 0.65rem;
    font-size: 0.78rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .header-actions .contact-pill {
    border-radius: 7px;
  }

  .header-contact-group,
  .home-page .header-contact-group {
    display: none;
  }

  .header-inner .site-nav,
  .home-page .site-nav {
    display: none;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.2rem 0 0.15rem;
  }

  .header-inner .site-nav.open,
  .home-page .site-nav.open {
    display: grid;
  }

  .site-nav a,
  .home-page .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    padding: 0.58rem 0.45rem;
    font-size: 0.78rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .hero,
  .home-page .hero {
    padding: 2rem 0 2.4rem;
  }

  .hero-grid,
  .home-page .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero h1,
  .home-page .hero h1,
  .section-header h1,
  .section-header h2,
  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero p,
  .home-page .hero p,
  .section p {
    font-size: 1rem;
  }

  .hero-actions,
  .home-page .hero-actions,
  .btn-row,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    width: 100%;
  }

  .button,
  .home-page .hero-actions .button {
    width: 100%;
    min-height: 2.85rem;
    white-space: normal;
  }

  .hero-proof,
  .home-page .hero-proof,
  .hero-service-strip,
  .featured-grid,
  .model-comparison,
  .machine-gallery,
  .sample-grid,
  .spec-strip,
  .spec-table,
  .parameter-table,
  .model-thumb-grid,
  .product-video-grid,
  .video-preview-grid,
  .contact-layout,
  .technical-grid,
  .buyer-layout,
  .process-grid,
  .cards-grid,
  .catalog-decision-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.7rem 0;
  }

  .section-header,
  .section-heading,
  .section-heading > div {
    max-width: 100%;
  }

  .feature-card,
  .product-card,
  .model-card,
  .machine-view-card,
  .contact-card,
  .buyer-panel,
  .support-checklist {
    padding: 1rem;
    border-radius: 8px;
  }

  .feature-image,
  .model-media,
  .machine-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
    margin-bottom: 1rem;
  }

  .feature-image img,
  .model-media img,
  .machine-image img {
    padding: 0.35rem;
    object-fit: contain;
  }

  .home-page .hero-frame,
  .hero-frame {
    min-height: 0;
    aspect-ratio: 4 / 3;
    max-width: 100%;
    border-radius: 10px;
  }

  .home-page .hero-frame img,
  .hero-frame img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
  }

  .hero-tag,
  .home-page .hero-tag {
    position: static;
    max-width: none;
    margin: 0.75rem;
  }

  .feature-card:hover,
  .product-card:hover,
  .service-card:hover,
  .machine-view-card:hover,
  .feature-card:hover .feature-image img,
  .product-card:hover .machine-image img,
  .model-card:hover .model-media img {
    transform: none;
  }
}

@media (max-width: 980px) {
  .home-page .featured-grid,
  .machines-page .catalog-decision-grid,
  .machines-page .model-comparison {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finance-highlight-grid,
  .seo-summary-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .skid-product-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .home-page .hero {
    padding: 2.4rem 0 2rem;
  }

  .home-page .hero-copy {
    max-width: calc(100vw - 1.2rem);
    overflow: hidden;
  }

  .home-page .hero .eyebrow {
    max-width: 20rem;
    letter-spacing: 0.16em;
    line-height: 1.35;
  }

  .home-page .hero h1 {
    max-width: 21rem;
    font-size: clamp(2.15rem, 10vw, 2.6rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .home-page .hero p {
    max-width: 21rem;
    font-size: 0.98rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .home-page .hero-frame,
  .home-page .hero-service-strip {
    display: none;
  }

  .home-page .ai-enquiry {
    display: none;
  }

  .home-page .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 21rem;
  }

  .home-page .seo-summary {
    padding: 2.2rem 0;
  }

  .home-page .finance-highlight {
    padding: 1.8rem 0;
  }

  .finance-highlight h2 {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .finance-option-list article {
    min-height: auto;
  }

  .seo-summary h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .home-page .section-featured {
    padding-top: 2.4rem;
  }

  .home-page #products .section-heading {
    gap: 0.9rem;
  }

  .home-page #products .section-heading h2 {
    max-width: 21rem;
    font-size: clamp(2rem, 9vw, 2.35rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .home-page #products .section-heading p {
    max-width: 21rem;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
  }

  .home-page .featured-grid,
  .machines-page .catalog-decision-grid,
  .machines-page .model-comparison {
    grid-template-columns: 1fr;
  }

  .skid-product-section {
    padding-top: 2.2rem;
  }

  .skid-product-hero {
    width: calc(100% - 2rem);
    max-width: calc(100vw - 2rem);
    gap: 1rem;
  }

  .skid-product-info {
    order: -1;
    padding: 1rem;
  }

  .skid-product-info h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 7.6vw, 2.12rem);
    line-height: 1.02;
    text-wrap: normal;
    overflow-wrap: anywhere;
  }

  .skid-product-info p {
    max-width: 20rem;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
  }

  .skid-main-photo img {
    aspect-ratio: 4 / 3;
  }

  .skid-key-specs,
  .skid-feature-list,
  .skid-spec-panel .spec-table {
    grid-template-columns: 1fr;
  }

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

  .skid-thumb-strip img {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 420px) {
  .header-actions,
  .home-page .header-actions,
  .header-inner .site-nav,
  .home-page .site-nav {
    grid-template-columns: 1fr;
  }

  .brand-logo,
  .home-page .brand-logo {
    width: 6.4rem;
    height: 2.7rem;
  }

  .hero h1,
  .home-page .hero h1,
  .section-header h1,
  .section-header h2,
  .section-heading h2 {
    font-size: clamp(1.85rem, 11vw, 2.35rem);
  }

  .feature-card,
  .product-card,
  .model-card,
  .machine-view-card,
  .contact-card {
    padding: 0.85rem;
  }

  .skid-key-specs div,
  .skid-feature-list li {
    padding: 0.8rem;
  }

  .skid-feature-list li {
    padding-left: 2rem;
  }
}

/* Neatness pass: final layout polish for the live site. */
body {
  color: #eef2f5;
  background:
    linear-gradient(180deg, #07090b 0%, #0b0f13 46%, #07090b 100%);
}

body::before {
  opacity: 0.18;
}

.container {
  width: min(100% - 2rem, 1160px);
}

.site-header,
.home-page .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 8, 10, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.header-inner,
.home-page .header-inner,
body:not(.home-page) .header-inner {
  min-height: 78px;
  gap: 1rem;
}

.brand,
body:not(.home-page) .brand {
  gap: 0.75rem;
}

.brand-logo,
.home-page .brand-logo,
body:not(.home-page) .brand-logo {
  width: 6.7rem;
  height: 2.8rem;
  padding: 0.2rem;
  border-radius: 6px;
  background: #fff;
}

.brand-title,
body:not(.home-page) .brand-title {
  letter-spacing: 0.04em;
}

.brand p,
body:not(.home-page) .brand p {
  margin-top: 0.18rem;
  color: #aeb8c2;
  font-size: 0.78rem;
}

.site-nav,
.home-page .site-nav,
body:not(.home-page) .site-nav {
  gap: 0.15rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.site-nav a,
.home-page .site-nav a {
  min-height: 2.25rem;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav a:hover,
.site-nav a.active,
.home-page .site-nav a:hover,
.home-page .site-nav a.active {
  background: rgba(255, 122, 20, 0.16);
  color: #fff;
}

.header-contact-group {
  gap: 0.55rem;
  color: #c9d2d9;
}

.header-contact-group span {
  color: #9ea8b1;
}

.button,
.home-page .hero-actions .button {
  min-height: 2.65rem;
  padding: 0.72rem 1rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: none;
}

.button.primary {
  background: #f26a21;
  box-shadow: 0 12px 26px rgba(242, 106, 33, 0.22);
}

.button.secondary,
.home-page .button.secondary {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.18);
}

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

.section {
  padding: clamp(3.2rem, 5vw, 4.8rem) 0;
}

.section-heading,
.section-header,
.machines-page .catalog-intro .section-header {
  max-width: 760px;
  gap: 0.65rem;
}

.section-heading h2,
.section-header h1,
.section-header h2,
.skid-product-info h1 {
  letter-spacing: 0;
}

.section-heading p,
.section-header p,
.machines-page .catalog-intro > p,
.skid-product-info p {
  color: #c7d0d8;
  line-height: 1.62;
}

.home-page .hero {
  padding: clamp(4rem, 7vw, 6.2rem) 0 clamp(3rem, 5vw, 4.4rem);
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.96) 0%, rgba(5, 7, 9, 0.76) 48%, rgba(5, 7, 9, 0.28) 100%),
    #07090b;
}

.home-page .hero-grid {
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.home-page .hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 5.85rem);
  line-height: 0.96;
}

.home-page .hero p {
  max-width: 45rem;
  color: #d6dde3;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.home-page .hero-actions {
  gap: 0.65rem;
}

.home-page .hero-proof {
  gap: 0.5rem;
  max-width: 42rem;
}

.home-page .hero-proof span {
  min-height: 2.35rem;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #e8edf2;
}

.home-page .hero-frame {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.home-page .hero-frame img {
  padding: 0.6rem;
}

.hero-service-strip {
  width: min(100% - 2rem, 1160px);
  margin-top: 1.5rem;
  border-radius: 8px;
}

.hero-service-strip div {
  padding: 1rem;
}

.featured-grid,
.model-comparison,
.cards-grid,
.service-list,
.sample-grid {
  gap: 1rem;
}

.feature-card,
.product-card,
.service-card,
.contact-card,
.machine-view-card,
.buyer-panel,
.support-checklist,
.buyer-checklist,
.skid-product-info,
.skid-spec-panel {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    #101418;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.feature-card,
.product-card {
  padding: 1.05rem;
}

.feature-card::before,
.product-card::before,
.service-card::before,
.contact-card::before {
  border-top-width: 2px;
  opacity: 0.5;
}

.feature-card:hover,
.product-card:hover,
.service-card:hover,
.machine-view-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.choice-header {
  min-height: 4rem;
  margin-bottom: 0.75rem;
  padding: 0.7rem;
  border-radius: 6px;
}

.choice-header span,
.eyebrow,
.product-badge {
  letter-spacing: 0.08em;
}

.feature-image,
.machine-image,
.model-media,
.skid-main-photo {
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 54%),
    #07090b;
}

.home-page .feature-image {
  min-height: 170px;
}

.feature-image img,
.machine-image img,
.model-media img {
  padding: 0.55rem;
}

.feature-card-dumper .machine-photo,
.model-media-photo,
.dumper-product-gallery .skid-main-photo {
  background: #f4f5f6;
}

.spec-strip {
  gap: 0.45rem;
}

.spec-strip span,
.spec-table div,
.parameter-table div,
.skid-key-specs div,
.skid-feature-list li {
  border-radius: 6px;
  border-color: rgba(255, 255, 255, 0.09);
}

.spec-strip strong,
.spec-table strong,
.skid-key-specs strong {
  color: #fff;
}

.product-jump-links {
  gap: 0.45rem;
}

.product-jump-links a {
  min-height: 2.35rem;
  border-radius: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.machines-page .model-comparison {
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}

.machines-page .model-media {
  min-height: 185px;
}

.machines-page .product-card {
  padding: 1rem;
}

.skid-product-hero {
  gap: clamp(1.25rem, 3vw, 2rem);
}

.skid-product-info {
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.ai-enquiry-form input,
.ai-enquiry-form textarea {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
}

.ai-enquiry-toggle,
.ai-enquiry-panel {
  border-radius: 8px;
}

@media (max-width: 980px) {
  .header-inner,
  .home-page .header-inner,
  body:not(.home-page) .header-inner {
    min-height: 70px;
  }

  .home-page .featured-grid,
  .machines-page .catalog-decision-grid,
  .machines-page .model-comparison {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 1.1rem, 1160px);
  }

  .site-nav,
  .home-page .site-nav,
  body:not(.home-page) .site-nav {
    padding: 0.45rem;
    border-radius: 8px;
  }

  .home-page .hero {
    padding: 2.4rem 0 2rem;
  }

  .home-page .hero h1,
  .section-heading h2,
  .section-header h1,
  .section-header h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.05;
  }

  .home-page .hero p,
  .section-heading p,
  .section-header p,
  .skid-product-info p {
    max-width: 100%;
  }

  .home-page .hero-actions,
  .btn-row {
    grid-template-columns: 1fr;
  }

  .home-page .featured-grid,
  .machines-page .catalog-decision-grid,
  .machines-page .model-comparison {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .product-card,
  .contact-card {
    padding: 0.9rem;
  }
}

/* Homepage equipment reset: show all five machines clearly. */
.home-page #products .section-heading {
  max-width: 820px;
}

.home-page #products .section-heading h2 {
  max-width: 760px;
}

.home-page .featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  align-items: stretch;
}

.home-page .featured-grid .feature-card,
.home-page .featured-grid .feature-card:nth-child(1),
.home-page .featured-grid .feature-card:nth-child(2),
.home-page .featured-grid .feature-card:nth-child(3),
.home-page .featured-grid .feature-card:nth-child(4),
.home-page .featured-grid .feature-card:nth-child(5) {
  display: flex;
  order: initial;
}

.home-page .featured-grid .feature-card:nth-child(1) {
  order: 1;
}

.home-page .featured-grid .feature-card:nth-child(2) {
  order: 2;
}

.home-page .featured-grid .feature-card:nth-child(3) {
  order: 3;
}

.home-page .featured-grid .feature-card:nth-child(4) {
  order: 4;
}

.home-page .featured-grid .feature-card:nth-child(5) {
  order: 5;
}

.home-page .feature-card.featured-main,
.home-page .feature-card-dumper,
.home-page #mini-skid-steer,
.home-page #me60u-excavator {
  border-color: rgba(255, 122, 20, 0.24);
}

.home-page .feature-card .choice-header strong {
  min-height: 2.45rem;
}

.home-page .feature-card .spec-strip {
  margin-top: auto;
}

.home-page .feature-card .btn-row {
  margin-top: 0.85rem;
}

.home-page .hero h1 {
  max-width: 11ch;
}

.home-page .hero-proof span {
  font-weight: 850;
}

@media (min-width: 1180px) {
  .home-page .featured-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Balance pass: repair proportions after homepage reorganisation. */
.home-page .hero {
  padding: clamp(3.2rem, 5.6vw, 5rem) 0 clamp(2.4rem, 4vw, 3.4rem);
}

.home-page .hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(1.6rem, 4vw, 3rem);
}

.home-page .hero-copy {
  max-width: 650px;
}

.home-page .hero h1 {
  max-width: 12.5ch;
  font-size: clamp(2.65rem, 5.8vw, 4.8rem);
  line-height: 1;
}

.home-page .hero p {
  max-width: 40rem;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

.home-page .hero-frame {
  max-width: 520px;
  margin-left: auto;
}

.home-page .hero-frame img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

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

.hero-service-strip div {
  min-height: 8.5rem;
}

.home-page #products .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  max-width: none;
}

.home-page #products .section-heading .eyebrow,
.home-page #products .section-heading h2,
.home-page #products .section-heading p {
  grid-column: 1;
}

.home-page #products .section-heading .button {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
}

.home-page .product-jump-links {
  margin-top: 1rem;
}

.home-page .featured-grid,
.home-page .featured-grid[style] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.home-page .featured-grid .feature-card {
  min-height: 100%;
}

.home-page .featured-grid .feature-card:nth-child(4),
.home-page .featured-grid .feature-card:nth-child(5) {
  max-width: none;
}

.home-page .feature-image {
  min-height: 205px;
  aspect-ratio: 4 / 3;
}

.home-page .feature-card h3 {
  min-height: 2.65rem;
  display: flex;
  align-items: flex-end;
}

.home-page .feature-card p {
  min-height: 4rem;
}

.home-page .feature-card .spec-strip {
  margin-top: 0.7rem;
}

.home-page .feature-card .btn-row {
  margin-top: auto;
}

.finance-highlight-grid,
.pathway-grid,
.pillar-grid,
.buyer-layout,
.process-grid,
.service-grid,
.contact-layout {
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 981px) and (max-width: 1179px) {
  .home-page .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-page .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero-frame {
    max-width: 560px;
    margin: 0;
  }

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

  .home-page #products .section-heading {
    grid-template-columns: 1fr;
  }

  .home-page #products .section-heading .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .home-page .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero-service-strip,
  .home-page .featured-grid {
    grid-template-columns: 1fr;
  }

  .hero-service-strip div {
    min-height: auto;
  }

  .home-page .feature-card h3,
  .home-page .feature-card p {
    min-height: 0;
  }

  .home-page .feature-image {
    min-height: 185px;
  }
}

/* Header logo balance: cleaner first-page brand area. */
.home-page .brand,
.brand {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .brand-logo,
.brand-logo {
  width: clamp(10.2rem, 15vw, 13rem);
  height: clamp(3.25rem, 4.8vw, 4.2rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.home-page .brand-title,
.brand-title {
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.05em;
}

.home-page .brand p,
.brand p {
  color: #b6c0c8;
  font-size: 0.76rem;
}

.home-page .header-inner,
.header-inner {
  min-height: 72px;
  padding-block: 0.65rem;
}

@media (max-width: 1120px) {
  .home-page .brand > div,
  .brand > div {
    display: none;
  }

  .home-page .brand-logo,
  .brand-logo {
    width: 9.6rem;
    height: 3.1rem;
  }
}

@media (max-width: 780px) {
  .home-page .header-inner,
  .header-inner {
    min-height: 64px;
    padding-block: 0.55rem;
  }

  .home-page .brand-logo,
  .brand-logo {
    width: 8.2rem;
    height: 2.65rem;
  }
}

/* Video restore and layout pass. */
.home-page .video-preview-grid,
.machines-page .video-section,
.machines-page .product-video-grid {
  display: grid;
}

.home-page .video-preview-grid,
.machines-page .product-video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.home-page .video-preview-grid {
  margin: 0.85rem 0 0.4rem;
}

.home-page .video-preview-grid video,
.machines-page .product-video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 190px;
  border: 1px solid rgba(214, 222, 230, 0.9);
  border-radius: 8px;
  background: #111820;
  object-fit: cover;
}

.section-video-showcase {
  background: #f7f8fa;
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: center;
}

.video-showcase-copy {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.video-showcase-copy p {
  max-width: 38rem;
  color: var(--muted);
}

.video-showcase-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.video-showcase-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(214, 222, 230, 0.95);
  border-radius: 8px;
  background: #111820;
  box-shadow: 0 18px 36px rgba(16, 24, 32, 0.12);
  object-fit: cover;
}

@media (max-width: 980px) {
  .video-showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-page .video-preview-grid,
  .machines-page .product-video-grid,
  .video-showcase-media {
    grid-template-columns: 1fr;
  }

  .home-page .video-preview-grid video,
  .machines-page .product-video-grid video,
  .video-showcase-media video {
    max-height: none;
  }
}

/* Market readiness pass: balanced proportions, mobile completeness and SEO landing clarity. */
html,
body {
  overflow-x: hidden;
}

main {
  min-width: 0;
}

.container,
.header-inner,
.hero-grid,
.featured-grid,
.model-comparison,
.skid-product-hero,
.contact-layout,
.buyer-layout,
.service-grid,
.video-showcase-grid {
  min-width: 0;
}

.section-heading,
.section-header {
  text-wrap: balance;
}

.section-heading p,
.section-header p,
.feature-card p,
.product-card p,
.seo-summary-copy p,
.skid-product-info p {
  overflow-wrap: anywhere;
}

.site-header {
  overflow: visible;
}

.header-inner,
.home-page .header-inner,
body:not(.home-page) .header-inner {
  grid-template-columns: minmax(9rem, auto) minmax(0, 1fr) minmax(10rem, auto);
  min-height: 74px;
}

.site-nav,
.home-page .site-nav,
body:not(.home-page) .site-nav {
  justify-self: center;
  max-width: 100%;
}

.header-actions,
.home-page .header-actions {
  min-width: 0;
}

.home-page .hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.86fr);
}

.home-page .hero-frame {
  width: 100%;
}

.home-page .hero-frame img,
.feature-image img,
.machine-image img,
.model-media img,
.skid-main-photo img,
.sample-card img {
  max-width: 100%;
  height: auto;
}

.hero-service-strip,
.finance-option-list,
.pathway-grid,
.pillar-grid,
.process-grid,
.service-list,
.sample-grid,
.spec-strip,
.spec-table,
.skid-key-specs,
.model-thumb-grid {
  min-width: 0;
}

.home-page .featured-grid,
.home-page .featured-grid[style] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .feature-card,
.machines-page .product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-page .feature-card ul,
.machines-page .card-section,
.machines-page .brochure-panel,
.machines-page .mini-spec-list {
  display: grid;
}

.home-page .badge-popular,
.home-page .savings-badge {
  display: inline-flex;
}

.home-page .feature-card .btn-row,
.machines-page .btn-row {
  margin-top: auto;
}

.home-page .feature-card .btn-row .button:nth-child(n+3),
.machines-page .btn-row .button:nth-child(n+4) {
  display: inline-flex;
}

.machines-page .spec-table div:nth-child(n+7) {
  display: grid;
}

.home-page .feature-image,
.machines-page .model-media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.home-page .feature-image {
  min-height: clamp(165px, 16vw, 220px);
}

.machines-page .model-media {
  min-height: clamp(180px, 20vw, 300px);
}

.product-jump-links {
  display: flex;
  flex-wrap: wrap;
}

.product-jump-links a {
  flex: 1 1 10.5rem;
  justify-content: center;
}

.section-video-showcase {
  color: #17202a;
}

.section-video-showcase .eyebrow {
  color: #be4a18;
}

.section-video-showcase h2 {
  color: #111820;
}

.video-showcase-copy p {
  color: #45515d;
}

.seo-summary,
.section-video-showcase {
  border-block: 1px solid rgba(16, 24, 32, 0.08);
}

@media (min-width: 1280px) {
  .home-page .featured-grid,
  .home-page .featured-grid[style] {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .header-inner,
  .home-page .header-inner,
  body:not(.home-page) .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .header-contact-group {
    display: none;
  }
}

@media (max-width: 980px) {
  .home-page .hero-grid,
  .video-showcase-grid,
  .skid-product-hero,
  .buyer-layout,
  .service-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-page .hero-frame,
  .home-page .hero-service-strip {
    display: block;
  }

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

  .home-page .hero-service-strip {
    display: grid;
  }

  .home-page .hero-frame {
    max-width: 620px;
    margin-inline: 0;
  }

  .home-page .featured-grid,
  .home-page .featured-grid[style],
  .machines-page .model-comparison,
  .sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 1rem, 1180px);
  }

  .section {
    padding: 2.35rem 0;
  }

  .header-inner,
  .home-page .header-inner,
  body:not(.home-page) .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: center;
    min-height: 66px;
  }

  .brand,
  .home-page .brand,
  body:not(.home-page) .brand {
    max-width: 100%;
  }

  .home-page .brand-logo,
  .brand-logo {
    width: clamp(7.6rem, 36vw, 9rem);
    height: clamp(2.4rem, 12vw, 3rem);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .header-inner .site-nav,
  .home-page .site-nav,
  body:not(.home-page) .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-actions,
  .home-page .header-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .home-page .hero {
    padding: 2rem 0 2.15rem;
  }

  .home-page .hero-copy,
  .home-page .hero p,
  .home-page .hero-proof,
  .home-page #products .section-heading h2,
  .home-page #products .section-heading p {
    max-width: 100%;
  }

  .home-page .hero h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .home-page .hero-frame,
  .home-page .hero-service-strip {
    display: grid;
  }

  .hero-service-strip,
  .home-page .featured-grid,
  .home-page .featured-grid[style],
  .machines-page .catalog-decision-grid,
  .machines-page .model-comparison,
  .finance-option-list,
  .pathway-grid,
  .pillar-grid,
  .process-grid,
  .service-list,
  .sample-grid,
  .seo-summary-grid,
  .spec-strip,
  .spec-table,
  .skid-key-specs,
  .skid-feature-list,
  .model-thumb-grid,
  .video-showcase-media,
  .home-page .video-preview-grid,
  .machines-page .product-video-grid {
    grid-template-columns: 1fr;
  }

  .home-page .feature-card h3,
  .home-page .feature-card p,
  .choice-header,
  .hero-service-strip div {
    min-height: 0;
  }

  .home-page .feature-image,
  .machines-page .model-media,
  .skid-main-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .btn-row,
  .home-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .contact-pill {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .product-jump-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-jump-links a {
    min-height: 2.65rem;
  }

  .ai-enquiry {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-nav a,
  .home-page .site-nav a,
  body:not(.home-page) .site-nav a,
  .header-actions .button,
  .header-actions .contact-pill {
    font-size: 0.76rem;
  }

  .home-page .hero-proof {
    grid-template-columns: 1fr;
  }
}

/* Product sales landing pass for high-intent SEO traffic. */
.sales-product-section {
  background:
    linear-gradient(135deg, rgba(5, 6, 7, 0.98), rgba(12, 15, 18, 0.92)),
    #050607;
}

.sales-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.1rem;
}

.sales-badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(242, 106, 33, 0.32);
  border-radius: 6px;
  background: rgba(242, 106, 33, 0.12);
  color: #ffe4d2;
  font-size: 0.78rem;
  font-weight: 850;
}

.sales-proof-section {
  background: #f6f7f8;
  color: #111820;
  border-block: 1px solid rgba(16, 24, 32, 0.08);
}

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

.sales-proof-grid article {
  display: grid;
  gap: 0.45rem;
  min-height: 9.5rem;
  padding: 1rem;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(16, 24, 32, 0.08);
}

.sales-proof-grid strong {
  color: #111820;
  font-size: 1rem;
}

.sales-proof-grid p {
  margin: 0;
  color: #45515d;
  line-height: 1.55;
}

.sales-gallery-section .section-heading {
  margin-bottom: 1.25rem;
}

.product-faq-section {
  background: #080a0c;
}

.product-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.product-faq-grid h2 {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
}

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

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 0.9rem 1rem;
  color: #fff;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #c7d0d8;
}

@media (max-width: 980px) {
  .sales-proof-grid,
  .product-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .sales-badge-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sales-badge-row span {
    justify-content: center;
    text-align: center;
  }

  .sales-proof-grid article {
    min-height: 0;
  }
}
