:root {
  --ink: #101820;
  --muted: #5d6873;
  --red: #d9252a;
  --red-dark: #a91419;
  --line: #e1e5e8;
  --soft: #f4f6f7;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.86rem;
  padding: 8px 0;
}
.topbar .wrap {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.logo img {
  display: block;
  width: 245px;
  max-height: 72px;
  object-fit: contain;
}
.navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.navigation a:hover {
  color: var(--red);
}
.languages {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.languages button {
  border: 0;
  background: #fff;
  padding: 8px 11px;
  font-weight: 700;
  cursor: pointer;
}
.languages button.active {
  background: var(--red);
  color: #fff;
}
.menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 13px;
  border-radius: 4px;
}
.hero {
  min-height: 630px;
  display: grid;
  align-items: center;
  color: #fff;
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 15, 22, 0.97) 0%,
      rgba(8, 15, 22, 0.82) 38%,
      rgba(8, 15, 22, 0.36) 72%,
      rgba(8, 15, 22, 0.18) 100%
    ),
    url("/assets/inovex-double-drop-hero.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-copy {
  max-width: 700px;
  padding: 80px 0;
}
.eyebrow {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.82rem;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.98;
  margin: 16px 0 25px;
  text-transform: uppercase;
}
.hero p {
  max-width: 630px;
  color: #e5e9eb;
  font-size: 1.14rem;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  border: 2px solid var(--red);
  cursor: pointer;
}
.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.button.outline {
  background: transparent;
  border-color: #fff;
}
.section {
  padding: 88px 0;
}
.section.soft {
  background: var(--soft);
}
.section-title {
  max-width: 700px;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 10px 0;
}
.section-title p {
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.05);
}
.card .number {
  color: var(--red);
  font-weight: 900;
  font-size: 1.8rem;
}
.card h3 {
  margin: 13px 0 8px;
  font-size: 1.3rem;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.dark-panel {
  background: var(--ink);
  color: #fff;
  padding: 48px;
  border-radius: 8px;
}
.check {
  display: flex;
  gap: 13px;
  margin: 20px 0;
}
.check b {
  color: var(--red);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
}
.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
}
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 85px 0;
}
.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  margin-bottom: 18px;
}
.page-hero p {
  max-width: 750px;
  color: #d8dde0;
}
.jobs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.job-card {
  border-top: 5px solid var(--red);
}
.job-card ul {
  padding-left: 20px;
  color: var(--muted);
}
.form-shell {
  margin-top: 55px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-weight: 700;
  font-size: 0.9rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #cbd1d5;
  border-radius: 4px;
  font: inherit;
  background: #fff;
}
.field textarea {
  min-height: 125px;
  resize: vertical;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.9rem;
}
.notice {
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.notice.success {
  background: #e6f6eb;
  color: #17642e;
}
.notice.error {
  background: #fde8e8;
  color: #8c1d1d;
}
.small {
  font-size: 0.86rem;
  color: var(--muted);
}
.site-footer {
  background: #0b1117;
  color: #cbd1d5;
  padding: 45px 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.footer-row img {
  width: 210px;
  background: #fff;
  border-radius: 3px;
}
.trap {
  position: absolute;
  left: -9999px;
}
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .navigation {
    display: none;
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .navigation.open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .header-row > .languages {
    display: none;
  }
  .hero {
    min-height: 560px;
    background-position: 60% center;
  }
  .jobs {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }
  .topbar .wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
  .logo img {
    width: 190px;
  }
  .grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .section {
    padding: 65px 0;
  }
  .form-shell {
    padding: 24px;
  }
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .hero {
    background-position: 62% center;
  }
}
