:root {
  --ink: #07111f;
  --deep: #061725;
  --navy: #0b2742;
  --steel: #d8e0e6;
  --paper: #f4f7f8;
  --muted: #667789;
  --green: #1f8a63;
  --green-dark: #0e5f45;
  --gold: #c99a3d;
  --line: rgba(7, 17, 31, .12);
  --white: #fff;
  --shadow: 0 22px 70px rgba(7, 17, 31, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.shell { width: min(1180px, calc(100% - 32px)); margin: auto; }
.topbar {
  background: var(--deep);
  color: #dce8ef;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .shell {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar a { color: #fff; font-weight: 800; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 236px;
}
.brand-mark {
  width: 92px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(7,17,31,.12);
  border-radius: 8px;
  background: #fff;
  padding: 5px;
}
.brand-mark img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: .02em;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 900;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 6px;
  color: #17324a;
  cursor: pointer;
}
.nav-links a:hover { background: #eef4f6; color: var(--green-dark); }
.language-select {
  height: 38px;
  border: 1px solid rgba(7,17,31,.16);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  padding: 0 8px;
}
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(95deg, rgba(6,23,37,.96), rgba(6,23,37,.84) 52%, rgba(31,138,99,.34)),
    url("assets/nj-waterjet-production-line.jpg") center / cover no-repeat;
  overflow: hidden;
}
.hero::before, .dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: .5;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 48px;
  padding: 82px 0 104px;
}
.eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  color: #cceee1;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 {
  max-width: 860px;
  margin: 22px 0;
  font-size: clamp(42px, 6.3vw, 78px);
}
.lead {
  max-width: 820px;
  margin: 0;
  color: #dce8ef;
  font-size: 20px;
}
.brand-line {
  margin-top: 22px;
  max-width: 790px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 12px 34px rgba(31,138,99,.28); }
.btn-secondary { border-color: rgba(255,255,255,.42); color: #fff; background: rgba(255,255,255,.08); }
.btn-light { border-color: var(--line); background: #fff; color: var(--navy); }
.hero-panel {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(7,17,31,.64);
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
  padding: 22px;
}
.hero-panel h2 { margin: 0 0 14px; font-size: 22px; }
.hero-panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.hero-panel li {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  background: rgba(255,255,255,.06);
}
.hero-panel strong { display: block; color: #fff; }
.hero-panel span { color: #c9d9e3; font-size: 14px; }
section { padding: 78px 0; }
.section-head { max-width: 860px; margin-bottom: 30px; }
.kicker {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.section-head h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(32px, 4.4vw, 52px);
}
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7,17,31,.07);
  padding: 24px;
}
.card h3 { margin: 0 0 10px; color: var(--navy); font-size: 24px; }
.card p { color: var(--muted); margin: 0 0 12px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #dbe6ea;
  border-radius: 999px;
  background: #fbfdfe;
  color: #17324a;
  font-size: 12px;
  font-weight: 900;
}
.comparison { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 16px; border-bottom: 1px solid #e5edf1; text-align: left; vertical-align: top; }
th { color: var(--navy); background: #eef4f6; }
td { color: #425466; }
.process {
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
  gap: 10px;
}
.step {
  position: relative;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7,17,31,.06);
  color: var(--navy);
  font-weight: 900;
}
.step small { display: block; color: var(--green); margin-bottom: 8px; }
.step::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--green);
}
.step:last-child::after { display: none; }
.dark-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, var(--deep), var(--navy));
}
.dark-band .section-head h2, .dark-band h3 { color: #fff; }
.dark-band .section-head p, .dark-band p, .dark-band li { color: #dce8ef; }
.dark-band .card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); box-shadow: none; }
.news-window {
  background:
    linear-gradient(180deg, rgba(238,244,246,.82), rgba(255,255,255,.96)),
    radial-gradient(circle at 12% 20%, rgba(30,130,76,.12), transparent 34%);
}
.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -6px 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.news-toolbar strong {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.news-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7,17,31,.07);
  padding: 24px;
}
.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.news-card h3 {
  margin: 16px 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}
.news-card p {
  margin: 0 0 18px;
  color: var(--muted);
}
.news-card a {
  margin-top: auto;
  color: var(--navy);
  font-weight: 900;
}
.layout-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.zone {
  min-height: 92px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
}
.zone span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; font-weight: 700; }
.form-panel {
  display: grid;
  gap: 12px;
}
.form-panel input, .form-panel textarea, .form-panel select {
  width: 100%;
  border: 1px solid #d5e0e6;
  border-radius: 6px;
  min-height: 46px;
  padding: 10px 12px;
  background: #fff;
}
.form-panel textarea { min-height: 110px; resize: vertical; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px 18px;
}
.faq details + details { margin-top: 10px; }
.faq summary { cursor: pointer; color: var(--navy); font-weight: 900; }
.faq p { color: var(--muted); margin-bottom: 0; }
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 8px;
}
.floating-cta a {
  min-width: 128px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(7,17,31,.2);
}
.floating-cta a:nth-child(2) { background: var(--navy); }
.floating-cta a:nth-child(3) { background: var(--gold); color: #111; }
.contact-band {
  color: #fff;
  background: linear-gradient(120deg, var(--deep), #123c32);
}
.contact-band a { color: #fff; font-weight: 900; }
footer {
  padding: 30px 0;
  color: #dce8ef;
  background: var(--deep);
  font-size: 14px;
}
footer .shell { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
@media (max-width: 1080px) {
  .nav { align-items: flex-start; padding: 12px 0; flex-direction: column; }
  .nav-links { flex-wrap: wrap; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .grid-3, .grid-2, .news-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step::after { display: none; }
  .layout-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 20px, 100vw - 20px); }
  .topbar .shell { align-items: flex-start; flex-direction: column; padding: 8px 0; }
  .brand { min-width: 0; }
  .brand-mark { width: 78px; height: 50px; }
  .brand strong { font-size: 18px; }
  .nav-links { gap: 4px; font-size: 12px; }
  .nav-links a { min-height: 34px; padding: 0 8px; }
  h1 { font-size: 38px; }
  .lead { font-size: 17px; }
  .hero-grid { padding: 56px 0 80px; gap: 26px; }
  .actions { display: grid; }
  .btn { width: 100%; white-space: normal; text-align: center; }
  section { padding: 56px 0; }
  .news-toolbar { align-items: flex-start; flex-direction: column; }
  .process, .layout-map { grid-template-columns: 1fr; }
  .floating-cta { left: 10px; right: 10px; bottom: 10px; grid-template-columns: repeat(3, 1fr); }
  .floating-cta a { min-width: 0; font-size: 12px; padding: 0 8px; }
}
