:root {
  --ink: #17201f;
  --text: #2e3a38;
  --muted: #65716e;
  --line: #dce5df;
  --soft: #eef4f1;
  --panel: #ffffff;
  --brand: #0f766e;
  --brand-dark: #123f3c;
  --accent: #d69e2e;
  --steel: #e6edf0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fbfcfb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(11, 20, 19, .86), rgba(11, 20, 19, .24));
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .13);
  font-weight: 800;
}

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

.brand small {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: #fff;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(10, 18, 17, .34);
}

.language-switch button {
  width: 40px;
  height: 32px;
  border: 0;
  color: rgba(255, 255, 255, .78);
  background: transparent;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  padding: 130px clamp(22px, 7vw, 92px) 84px;
  color: #fff;
  background: url("assets/hero-industrial.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 17, .91), rgba(8, 18, 17, .66) 48%, rgba(8, 18, 17, .22)),
    linear-gradient(180deg, rgba(8, 18, 17, .18), rgba(8, 18, 17, .76));
}

.hero-content {
  position: relative;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 21px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .85);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .32);
  font-weight: 800;
}

.button.primary {
  border-color: var(--accent);
  color: #121614;
  background: var(--accent);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.signal-band div {
  padding: 26px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.signal-band strong,
.signal-band span {
  display: block;
}

.signal-band strong {
  color: var(--ink);
  font-size: 17px;
}

.signal-band span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 88px clamp(22px, 7vw, 92px);
}

.section.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin: 0;
}

.intro-grid,
.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 7vw, 76px);
}

.intro-grid > p,
.experience-copy p {
  color: var(--ink);
  font-size: 21px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--brand);
  color: var(--ink);
  background: var(--steel);
  font-weight: 700;
}

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

.service-grid article {
  min-height: 264px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.icon-line {
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.keyword-panel {
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.keyword-panel span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--brand-dark);
  background: var(--soft);
  font-weight: 800;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  align-items: start;
  gap: clamp(30px, 7vw, 84px);
}

.delivery-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.delivery-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.delivery-steps span {
  color: var(--brand);
  font-weight: 900;
}

.delivery-steps p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .9fr);
  gap: clamp(28px, 7vw, 78px);
  padding: 78px clamp(22px, 7vw, 92px);
  color: #fff;
  background: var(--brand-dark);
}

.contact h2 {
  color: #fff;
}

.contact-panel {
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.contact-panel a {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-panel .secondary-contact {
  color: var(--accent);
  font-size: 16px;
}

.contact-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 7vw, 92px);
  color: #dae6e2;
  background: #111816;
  font-size: 13px;
}

footer div {
  display: grid;
  gap: 4px;
}

footer a {
  color: #fff;
}

.legal-page {
  padding-top: 96px;
  background: #fbfcfb;
}

.legal-content {
  max-width: 900px;
  padding: 72px clamp(22px, 7vw, 92px);
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(36px, 5vw, 58px);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 24px;
}

@media (max-width: 980px) {
  .signal-band,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
    overflow: hidden;
  }

  nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .language-switch button {
    width: 34px;
  }

  .language-switch {
    position: fixed;
    top: 13px;
    right: 16px;
    width: 114px;
  }

  .hero {
    min-height: 90svh;
    padding: 116px 20px 66px;
  }

  h1 {
    max-width: 360px;
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 350px;
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .button {
    width: 100%;
  }

  .signal-band,
  .service-grid,
  .intro-grid,
  .experience-layout,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .section,
  .contact {
    padding: 64px 20px;
  }

  .intro-grid > p,
  .experience-copy p {
    font-size: 18px;
  }

  .service-grid article {
    min-height: auto;
  }

  footer {
    flex-direction: column;
    padding: 24px 20px;
  }
}
