:root {
  --ink: #111923;
  --navy: #111a24;
  --slate: #67717c;
  --orange: #f57c20;
  --orange2: #ff9a3d;
  --paper: #f3f1ed;
  --line: #d9d8d3;
  --white: #fff;
  --display: "Barlow Condensed", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.topbar {
  height: 34px;
  background: #0c131b;
  color: #aeb6bf;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a {
  color: #fff;
}
.divider {
  margin: 0 16px;
  color: #4d5660;
}
.lang {
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
}
.header {
  height: 78px;
  background: #fff;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #e9e9e6;
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand svg {
  width: 42px;
  height: 42px;
  fill: var(--orange);
}
.brand-cut {
  fill: #fff;
}
.brand > span {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.035em;
  line-height: 0.75;
}
.brand b {
  font-weight: 700;
}
.brand small {
  display: block;
  font-family: var(--body);
  font-size: 7px;
  letter-spacing: 0.27em;
  margin-top: 8px;
  color: #7b8187;
}
.nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 13px;
  font-weight: 600;
}
.nav > a:not(.nav-cta) {
  padding: 30px 0;
  position: relative;
}
.nav > a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.25s;
}
.nav > a:hover:after {
  width: 100%;
}
.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 13px 18px;
}
.nav-cta span {
  margin-left: 15px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
}
.hero {
  min-height: 690px;
  background: #0d151f;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(8, 14, 21, 0.92) 0%, rgba(8, 14, 21, 0.55) 38%, rgba(8, 14, 21, 0.08) 72%),
    url("../img/hero-factory.jpg");
  background-size: cover;
  background-position: center;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative;
  padding: 84px 0 60px;
}
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin: 0 0 21px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow span {
  display: inline-block;
  width: 27px;
  height: 2px;
  background: var(--orange);
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 0.89;
}
h1 {
  font-size: clamp(60px, 7.2vw, 94px);
  max-width: 800px;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--orange);
}
.hero-copy {
  font-size: 16px;
  line-height: 1.75;
  color: #c6ccd2;
  max-width: 590px;
  margin: 29px 0 33px;
}
.hero-actions {
  display: flex;
  gap: 13px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 17px 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: white;
}
.btn-primary:hover {
  background: var(--orange2);
}
.btn-ghost {
  border: 1px solid #68717c;
  color: #fff;
}
.btn-dark {
  background: var(--ink);
  color: #fff;
  margin-top: 8px;
}
.hero-metrics {
  display: flex;
  margin-top: 64px;
  gap: 0;
}
.hero-metrics > div {
  padding: 0 37px;
  border-left: 1px solid #5b626b;
}
.hero-metrics > div:first-child {
  padding-left: 0;
  border: 0;
}
.hero-metrics strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
}
.hero-metrics span {
  font-size: 10px;
  color: #9ca5ae;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.scroll-cue {
  position: absolute;
  right: 27px;
  bottom: 30px;
  font-size: 8px;
  letter-spacing: 0.18em;
  transform: rotate(90deg);
  transform-origin: right bottom;
  color: #b9c0c7;
}
.scroll-cue span {
  width: 40px;
  height: 1px;
  background: var(--orange);
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
}
.trust-strip {
  background: var(--orange);
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 104px;
}
.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.trust-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.trust-icon {
  font-size: 24px;
}
.trust-grid p {
  margin: 0;
}
.trust-grid b {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-grid small {
  display: block;
  font-size: 10px;
  margin-top: 5px;
  color: #ffe0c8;
}
.section {
  padding: 110px 0;
}
.products {
  background: var(--paper);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}
.section-head h2,
.about h2,
.solution-copy h2,
.inquiry h2 {
  font-size: clamp(45px, 5vw, 66px);
}
.section-head > p {
  max-width: 440px;
  line-height: 1.8;
  color: #68717a;
  font-size: 14px;
  margin: 0 0 4px;
}
.eyebrow.dark {
  color: #515a63;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: #fff;
  transition: 0.3s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 35px rgba(17, 25, 35, 0.12);
}
.product-photo {
  height: 220px;
  background-image: linear-gradient(0deg, rgba(5, 10, 15, 0.3), transparent 60%), url("../img/hero-factory.jpg");
  background-size: 780px auto;
  position: relative;
  filter: saturate(0.72);
}
.photo-1 {
  background-position: 72% 50%;
}
.photo-2 {
  background-position: 52% 47%;
}
.photo-3 {
  background-position: 88% 70%;
}
.photo-4 {
  background-position: 62% 66%;
}
.product-no {
  position: absolute;
  top: 14px;
  left: 16px;
  color: white;
  font-family: var(--display);
  font-size: 24px;
}
.tag {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--orange);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 8px 10px;
}
.product-body {
  padding: 24px 22px 23px;
}
.micro {
  font-size: 8px;
  letter-spacing: 0.17em;
  color: var(--orange);
  font-weight: 700;
}
.product-body h3 {
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
  margin: 8px 0 12px;
}
.product-body > p:not(.micro) {
  font-size: 12px;
  line-height: 1.7;
  color: #6e757d;
  min-height: 61px;
}
.product-body a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.product-body a span {
  color: var(--orange);
  margin-left: 7px;
}
.solutions {
  background: #111a24;
  color: #fff;
  position: relative;
}
.solutions:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255, 255, 255, 0.025) 60%);
}
.solution-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}
.solution-copy > p:not(.eyebrow) {
  color: #aeb5bd;
  line-height: 1.8;
  font-size: 14px;
  margin: 27px 0;
}
.text-link {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #65707b;
  padding-bottom: 7px;
}
.text-link span {
  color: var(--orange);
  margin-left: 12px;
}
.solution-list article {
  display: grid;
  grid-template-columns: 44px 1fr 30px;
  gap: 14px;
  align-items: center;
  padding: 21px 0;
  border-top: 1px solid #37404a;
}
.solution-list article:last-child {
  border-bottom: 1px solid #37404a;
}
.solution-list article > span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 13px;
}
.solution-list h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 21px;
  margin: 0 0 4px;
}
.solution-list p {
  margin: 0;
  color: #8f98a2;
  font-size: 11px;
}
.solution-list b {
  color: var(--orange);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-visual {
  height: 500px;
  position: relative;
}
.about-img {
  height: 100%;
  background: linear-gradient(90deg, rgba(17, 25, 35, 0.08), transparent), url("../img/hero-factory.jpg") 64% 50%/950px auto no-repeat;
  filter: saturate(0.6);
}
.experience {
  position: absolute;
  right: -25px;
  bottom: -24px;
  background: var(--orange);
  color: #fff;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.experience strong {
  font: 700 52px/1 var(--display);
}
.experience span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.about-copy > p:not(.eyebrow) {
  font-size: 14px;
  color: #6d747b;
  line-height: 1.8;
  margin: 26px 0;
}
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 28px;
}
.checks span {
  font-size: 11px;
  font-weight: 600;
}
.checks span:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  background: #fff0e5;
  color: var(--orange);
  margin-right: 8px;
}
.cases {
  background: var(--paper);
}
.section-head.compact {
  align-items: end;
}
.case-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 15px;
}
.case {
  height: 410px;
  position: relative;
  background-image: linear-gradient(0deg, rgba(6, 12, 18, 0.92), rgba(6, 12, 18, 0.03) 70%), url("../img/hero-factory.jpg");
  background-size: auto 500px;
  color: #fff;
  overflow: hidden;
}
.case-a {
  background-position: 66% center;
}
.case-b {
  background-position: 84% center;
}
.case-c {
  background-position: 43% center;
}
.case > div {
  position: absolute;
  bottom: 0;
  padding: 25px;
}
.case span {
  font-size: 8px;
  letter-spacing: 0.13em;
  color: var(--orange);
  font-weight: 700;
}
.case h3 {
  font: 600 27px/1.05 var(--display);
  text-transform: uppercase;
  margin: 8px 0;
}
.case p {
  font-size: 11px;
  color: #c0c7ce;
  margin: 0;
}
.inquiry {
  background: var(--navy);
  color: #fff;
  padding: 105px 0;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}
.inquiry-grid > div > p:not(.eyebrow) {
  color: #a8b0b8;
  line-height: 1.8;
  font-size: 14px;
  max-width: 420px;
  margin: 25px 0;
}
.response {
  border-left: 2px solid var(--orange);
  padding-left: 14px;
  margin-top: 34px;
}
.response b,
.response span {
  display: block;
}
.response b {
  font: 600 15px var(--display);
  text-transform: uppercase;
}
.response span {
  font-size: 10px;
  color: #9da6af;
  margin-top: 4px;
}
.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 16px;
}
.field {
  display: flex;
  flex-direction: column;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #aab2bb;
  margin-bottom: 7px;
}
.field input,
.field textarea {
  border: 1px solid #46505b;
  background: #1b2632;
  color: #fff;
  padding: 13px 14px;
  outline: none;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--orange);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #6f7b87;
  font-size: 11px;
}
.submit {
  grid-column: 1/-1;
  margin-top: 4px;
}
.form-note {
  grid-column: 1/-1;
  font-size: 9px !important;
  margin: 0 !important;
  color: #7f8994 !important;
}
.footer {
  background: #0b121a;
  color: #9da6af;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 55px;
}
.brand.inverse {
  color: #fff;
}
.brand.inverse .brand-cut {
  fill: #0b121a;
}
.footer-brand p {
  font-size: 11px;
  line-height: 1.7;
  max-width: 230px;
  margin-top: 20px;
}
.footer h4 {
  font: 600 15px var(--display);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.07em;
  margin: 6px 0 18px;
}
.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-grid a,
.footer-grid span {
  font-size: 10px;
}
.contact-col a:first-of-type {
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid #252d36;
  padding: 21px 0;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.floating-quote {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  background: var(--orange);
  color: #fff;
  padding: 13px 17px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.floating-quote span {
  margin-right: 7px;
}
@media (max-width: 960px) {
  .nav {
    gap: 15px;
  }
  .nav > a:not(.nav-cta) {
    display: none;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .solution-layout,
  .about-grid,
  .inquiry-grid {
    gap: 45px;
  }
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-a {
    grid-column: 1/-1;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .trust-grid > div {
    height: 90px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 30px, 1180px);
  }
  .topbar {
    display: none;
  }
  .header {
    height: 68px;
    position: sticky;
    top: 0;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--ink);
  }
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open > a:not(.nav-cta) {
    display: block;
    padding: 10px;
  }
  .nav.open > a:after {
    display: none;
  }
  .hero {
    min-height: 660px;
  }
  .hero-content {
    padding: 70px 0;
  }
  .hero-image {
    background-position: 60% center;
  }
  .hero-copy {
    font-size: 14px;
    max-width: 95%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-metrics {
    margin-top: 45px;
  }
  .hero-metrics > div {
    padding: 0 14px;
  }
  .hero-metrics strong {
    font-size: 26px;
  }
  .hero-metrics span {
    font-size: 8px;
  }
  .scroll-cue {
    display: none;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid > div {
    height: 75px;
  }
  .section {
    padding: 74px 0;
  }
  .section-head {
    display: block;
  }
  .section-head > p {
    margin-top: 25px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-photo {
    height: 240px;
  }
  .solution-layout,
  .about-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-visual {
    height: 370px;
  }
  .experience {
    right: 0;
  }
  .checks {
    grid-template-columns: 1fr;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .case-a {
    grid-column: auto;
  }
  .case {
    height: 350px;
  }
  .quote-form {
    grid-template-columns: 1fr;
  }
  .field {
    grid-column: 1/-1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    gap: 15px;
    flex-direction: column;
  }
  .floating-quote {
    display: none;
  }
}
