:root {
  --navy: #062b57;
  --navy-2: #0d3c73;
  --ink: #142033;
  --muted: #5e6b7c;
  --line: #d8e1ec;
  --soft: #f4f7fa;
  --paper: #ffffff;
  --quote: #f07c19;
  --brand-red: #d90416;
  --steel: #eef3f8;
  --shadow: 0 18px 45px rgba(6, 43, 87, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 28px;
  color: #fff;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand span,
.hero > *,
.about-panel > *,
.quote-section > * {
  min-width: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  background: #fff;
  border-radius: 4px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.15;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover {
  color: #fff;
}

.language-toggle,
.menu-button,
.button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.language-toggle {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  padding: 9px 12px;
}

.menu-button {
  display: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 9px 12px;
}

.section-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: 38px;
  padding: 58px 0 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--quote);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  text-wrap: balance;
}

h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

h3 {
  line-height: 1.18;
}

.hero-lede {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 4px;
  padding: 12px 18px;
  font-weight: 800;
}

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

.button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 0;
}

.trust-row div {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.trust-row dt {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
}

.trust-row dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-machine {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-machine::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid #e5edf5;
}

.hero-machine img {
  position: relative;
  max-height: 440px;
  object-fit: contain;
}

.hero-spec {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 250px;
  padding: 16px;
  color: #fff;
  background: var(--navy);
}

.hero-spec span,
.hero-spec small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.hero-spec strong {
  display: block;
  margin: 4px 0;
  font-size: 22px;
}

.capability-strip,
.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--navy);
  color: #fff;
}

.capability-strip article,
.process-strip article {
  min-height: 174px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-strip span,
.process-strip span {
  color: var(--quote);
  font-weight: 900;
}

.capability-strip h2,
.process-strip h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.capability-strip p,
.process-strip p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.solutions,
.products-section,
.about,
.quote-section {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: end;
}

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

.solution-grid article,
.product-card,
.about-panel,
.quote-panel {
  background: #fff;
  border: 1px solid var(--line);
}

.solution-grid article {
  min-height: 156px;
  padding: 24px;
}

.solution-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.solution-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.product-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}

.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--navy);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.is-active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.search-box {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-box input,
.quote-panel input,
.quote-panel select,
.quote-panel textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.product-count {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

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

.product-card {
  display: grid;
  grid-template-rows: 220px auto;
  min-height: 560px;
  overflow: hidden;
}

.product-card figure {
  margin: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.product-card figure img {
  width: 100%;
  height: 188px;
  object-fit: contain;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.model-badge {
  color: #fff;
  background: var(--navy-2);
  padding: 5px 8px;
  border-radius: 4px;
  font-weight: 900;
}

.product-body h3 {
  min-height: 52px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: 19px;
}

.product-body p {
  color: var(--muted);
  margin-bottom: 0;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid #edf2f7;
  font-size: 13px;
}

.spec-list dt {
  color: var(--muted);
}

.spec-list dd {
  margin: 0;
  font-weight: 800;
}

.product-card .button {
  margin-top: auto;
  width: 100%;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  padding: 36px;
}

.about-panel p {
  color: var(--muted);
}

.facts-card {
  display: grid;
  gap: 10px;
}

.facts-card div {
  padding: 14px;
  background: var(--steel);
  border: 1px solid var(--line);
}

.facts-card span,
.facts-card strong {
  display: block;
}

.facts-card span {
  color: var(--muted);
  font-size: 12px;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: start;
}

.quote-copy {
  padding: 36px 0;
}

.quote-copy p {
  color: var(--muted);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-lines a {
  display: block;
  padding: 14px 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 900;
}

.quote-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.quote-panel .full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  color: #fff;
  background: #041f40;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer div:last-child {
  display: grid;
  gap: 6px;
  text-align: right;
}

@media (max-width: 1020px) {
  .hero,
  .split-heading,
  .about-panel,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-machine {
    min-height: 420px;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    max-width: 100vw;
    padding: 12px;
    gap: 10px;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 12px;
    flex-direction: column;
    gap: 10px;
  }

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

  .language-toggle {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 9px 10px;
  }

  .section-band {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero {
    padding: 34px 0;
    gap: 22px;
    overflow: hidden;
  }

  .hero-copy,
  .hero-machine,
  .section-heading,
  .about-panel,
  .quote-section {
    width: 100%;
    max-width: calc(100vw - 24px);
  }

  h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.05;
    text-wrap: auto;
  }

  .hero-lede {
    font-size: 16px;
  }

  .trust-row,
  .product-toolbar,
  .product-grid,
  .solution-grid,
  .capability-strip,
  .process-strip,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .hero-machine {
    min-height: 360px;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .hero-machine img {
    width: 100%;
    max-height: 260px;
  }

  .hero-spec {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .capability-strip article,
  .process-strip article {
    min-height: 130px;
  }

  .solutions,
  .products-section,
  .about,
  .quote-section {
    padding: 56px 0;
  }

  .filter-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-chip {
    white-space: nowrap;
  }

  .product-card {
    min-height: auto;
  }

  .about-panel {
    padding: 22px;
  }

  .site-footer {
    display: grid;
    text-align: left;
  }

  .site-footer div:last-child {
    text-align: left;
  }
}
