:root {
  --navy: #082849;
  --ink: #102a4c;
  --orange: #f36b19;
  --pale: #edf3f6;
  --muted: #617082;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  color: var(--ink);
  overflow-x: clip;
}
body {
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(var(--max), calc(100% - 42px));
  margin: auto;
}
.top {
  background: var(--navy);
  color: #fff;
  height: 66px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 10px #001b3333;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 42px));
  margin: auto;
}
.brand {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.brand b {
  color: var(--orange);
}
.mark {
  width: 28px;
  height: 31px;
  clip-path: polygon(50% 0, 100% 18%, 100% 75%, 50% 100%, 0 75%, 0 18%);
  background: var(--orange);
  border: 3px solid #fff;
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
}
.nav {
  display: flex;
  gap: 25px;
  font-size: 12px;
  font-weight: bold;
}
.nav a.active,
.nav a:hover {
  color: var(--orange);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
}
.button {
  border: 0;
  background: var(--orange);
  color: #fff;
  border-radius: 3px;
  padding: 12px 19px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}
.button.outline {
  background: transparent;
  border: 1px solid currentColor;
}
.button.dark {
  background: var(--navy);
}
.hero {
  min-height: 520px;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, #06234299, #06234255),
    url("../images/hero-containment.webp") center/cover;
}
.hero h1,
.page-hero h1 {
  font-size: 48px;
  line-height: 0.97;
  max-width: 700px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.hero p {
  margin: 17px auto 22px;
}
.cert-strip {
  padding: 18px;
  background: #f4f6f7;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 55px;
  color: #5c6871;
  font-weight: bold;
}
.seal {
  display: flex;
  gap: 7px;
  align-items: center;
}
.seal svg {
  width: 34px;
  height: 34px;
  color: #667783;
}
.section {
  padding: 52px 0;
}
.section.pale {
  background: var(--pale);
}
.section.dark {
  background: linear-gradient(120deg, #082849, #133a60);
  color: #fff;
}
.title {
  font-size: 27px;
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.eyebrow {
  color: var(--orange);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
}
.grid {
  display: grid;
  gap: 16px;
}
.products {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: #fff;
  color: var(--ink);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px #001b3530;
  border: 1px solid #dfe7eb;
}
.product-card {
  position: relative;
  padding: 8px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-3px);
  border-color: #f36b1975;
  box-shadow: 0 8px 20px #001b3540;
}
.product-card > a:last-child::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.product-card > a:last-child:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
.product-card .product-img {
  /* Keeps the product photography substantial in both four- and two-column grids. */
  height: auto;
  aspect-ratio: 16 / 9;
}
.product-img,
.media {
  background: linear-gradient(135deg, #152130, #0a0c0e 55%, #516474);
  background-size: cover;
  background-position: center;
}
.product-img {
  background-color: #f2f3f4;
  background-size: cover;
}
.product-card h3 {
  font-size: 15px;
  margin: 12px 0 5px;
}
.product-card p {
  font-size: 11px;
  color: #556270;
  min-height: 26px;
}
.product-card .button {
  padding: 9px 14px;
}
.button,
.nav a,
.footer a,
.tabs button,
.faq button,
.thumb,
.social-icons a,
.project-cards .card,
.use-cases .card,
.team .card,
.certs .card,
.why .card {
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}
.button:hover {
  background: #d95b10;
  box-shadow: 0 4px 10px #001b3533;
  transform: translateY(-1px);
}
.button.dark:hover {
  background: #0d3a65;
}
.button.outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}
.nav a,
.footer a {
  text-underline-offset: 4px;
}
.nav a:hover,
.footer a:hover {
  text-decoration: underline;
}
.tabs button {
  cursor: pointer;
}
.tabs button:hover:not(.active),
.tabs button:focus-visible:not(.active) {
  background: var(--navy);
}
.faq button:hover,
.faq button:focus-visible {
  color: #cf5410;
}
.social-icons a:hover,
.social-icons a:focus-visible {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.project-cards .card:hover,
.project-cards .card:focus-within,
.use-cases .card:hover,
.use-cases .card:focus-within,
.team .card:hover,
.team .card:focus-within,
.certs .card:hover,
.certs .card:focus-within,
.why .card:hover,
.why .card:focus-within {
  border-color: #f36b198f;
  box-shadow: 0 7px 16px #001b3530;
  transform: translateY(-2px);
}
.thumb {
  cursor: pointer;
}
.thumb:hover,
.thumb:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px #f36b1930;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}
.media {
  min-height: 300px;
  border-radius: 5px;
}
.split > .media {
  min-height: 0;
  aspect-ratio: 16 / 9;
}
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.feature {
  display: flex;
  gap: 10px;
  font-size: 12px;
}
.feature svg,
.contact-item svg {
  flex: 0 0 27px;
  color: var(--orange);
  width: 27px;
  height: 27px;
}
.project-cards {
  grid-template-columns: repeat(3, 1fr);
}
.project-cards .card {
  padding: 9px;
  font-size: 12px;
}
.project-cards .media {
  min-height: 0;
  aspect-ratio: 16 / 9;
}
.center {
  text-align: center;
}
.why {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.why .card {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 2px 10px;
  padding: 15px;
  font-size: 12px;
  border-top: 2px solid var(--orange);
}
.why .card svg {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  color: var(--orange);
}
.why .card small {
  color: #637080;
}
.faq {
  max-width: 1000px;
  margin: auto;
}
.faq article {
  border-bottom: 1px solid #e2e7ea;
  padding: 15px 0;
}
.faq button {
  border: 0;
  background: none;
  color: var(--orange);
  font-weight: bold;
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  padding: 0;
}
.faq button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
.faq .open button svg {
  transform: rotate(180deg);
}
.faq p {
  display: none;
  color: #637080;
  font-size: 12px;
  line-height: 1.5;
}
.faq .open p {
  display: block;
}
.footer {
  background: #071f3a;
  color: #dfe5ec;
  padding: 36px 0 16px;
  font-size: 11px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 25px;
}
.footer h4 {
  margin: 0 0 10px;
  color: #fff;
}
.footer a {
  display: block;
  margin: 6px 0;
}
.copyright {
  border-top: 1px solid #ffffff22;
  margin-top: 18px;
  padding-top: 12px;
}
.page-hero {
  min-height: 210px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(#071f3ab8, #071f3ab8),
    url("../images/factory-production.webp") center/cover;
}
.tabs {
  display: flex;
  justify-content: center;
  background: #dde8ee;
}
.tabs button {
  border: 0;
  background: #63798b;
  color: #fff;
  padding: 11px 45px;
  font-weight: bold;
  font-size: 11px;
}
.tabs .active {
  background: var(--orange);
}
.catalog {
  max-width: 560px;
  margin: auto;
  grid-template-columns: repeat(3, 1fr);
}
.crumb {
  padding: 23px 0;
  font-weight: bold;
}
.detail-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 55px;
  align-items: center;
}
.main-image {
  height: auto;
  aspect-ratio: 5 / 4;
  border-radius: 6px;
  background: linear-gradient(135deg, #10151c, #000 50%, #525a65);
  background-size: cover;
  background-position: center;
}
.thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.thumb {
  width: 95px;
  height: 75px;
  border-radius: 5px;
  background: linear-gradient(135deg, #111, #666);
  background-size: cover;
  border: 3px solid transparent;
}
.thumb.active {
  border-color: var(--navy);
}
.product-info h1 {
  font-size: 55px;
  line-height: 1.02;
  margin: 0 0 28px;
}
.specs {
  list-style: none;
  padding: 0;
  font-size: 18px;
  line-height: 2;
}
.specs svg {
  width: 23px;
  height: 23px;
  vertical-align: middle;
  margin-right: 9px;
}
.actions {
  display: flex;
  gap: 18px;
  margin-top: 23px;
}
.actions .button {
  font-size: 18px;
  text-transform: none;
  padding: 18px 27px;
}
.compare {
  padding: 48px 0;
  background: linear-gradient(120deg, #092a48, #172735);
  color: #fff;
  text-align: center;
}
.table-wrap {
  overflow: auto;
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 12px;
  background: #0c2d4c;
  border-radius: 5px;
  overflow: hidden;
}
.compare th,
.compare td {
  padding: 10px;
  border-bottom: 1px solid #ffffff16;
}
.use-cases {
  grid-template-columns: repeat(5, 1fr);
}
.use-cases .media {
  min-height: 0;
  aspect-ratio: 16 / 9;
}
.use-cases .card h3,
.use-cases .card p {
  padding: 0 10px;
}
.use-cases .card h3 {
  font-size: 14px;
}
.inquiry {
  padding: 40px 0;
}
.form-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
}
.form-box {
  border: 1px solid #dae1e6;
  border-radius: 7px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.form-box textarea,
.form-box input,
.form-box select {
  font: inherit;
  border: 1px solid #b7c3ce;
  border-radius: 3px;
  padding: 10px;
  width: 100%;
}
.form-box textarea {
  grid-column: span 2;
}
.form-box .button {
  grid-column: span 2;
  justify-content: center;
}
.form-note {
  grid-column: span 2;
  margin: 0;
  color: #28763d;
  font-size: 12px;
}
.about-hero {
  min-height: 270px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, #061f3fdd, #061f3f55),
    url("../images/about-factory.webp") center/cover;
  border-bottom: 3px solid var(--orange);
}
.about-hero h1 {
  font-size: 38px;
  max-width: 570px;
  margin: 7px 0;
}
.stats {
  display: flex;
  gap: 25px;
  color: var(--orange);
  font-size: 20px;
  font-weight: bold;
}
.stats span {
  font-size: 10px;
  color: var(--ink);
  display: block;
}
.team {
  grid-template-columns: repeat(4, 1fr);
}
.team .media {
  min-height: 0;
  aspect-ratio: 3 / 2;
}
.team h3,
.team p {
  margin: 8px 12px;
}
.team h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team h3 svg {
  width: 18px;
  height: 18px;
  color: #247b9a;
}
.timeline {
  background: linear-gradient(120deg, #092a48, #172735);
  color: #fff;
  padding: 45px 0;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.timeline-grid article {
  position: relative;
  border-top: 2px solid var(--orange);
  padding-top: 20px;
  font-size: 12px;
}
.timeline-grid article::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid #ff9d55;
  border-radius: 50%;
  background: var(--orange);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px #f36b1933;
}
.timeline-grid b {
  color: var(--orange);
  font-size: 18px;
}
.certs {
  grid-template-columns: repeat(4, 1fr);
}
.certs .card {
  padding: 18px;
  min-height: 160px;
  border-top: 3px solid var(--orange);
}
.certs .card > svg {
  width: 34px;
  height: 34px;
  color: #60798c;
  margin-bottom: 12px;
}
.sustain-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
.sustain-list span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.sustain-list svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: #42bd5c;
}
.sustainability-media {
  width: min(100%, 420px);
  aspect-ratio: 4 / 5 !important;
  justify-self: center;
}
.cta {
  background: var(--orange);
  color: #fff;
  padding: 24px 0;
}
.cta .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.about-footer > div:first-child {
  max-width: 520px;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
}
.social-icons svg {
  width: 21px;
  height: 21px;
}
.contact-hero {
  height: 130px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(#082849aa, #082849aa),
    url("../images/contact-factory.webp") center/cover;
}
.contact-hero h1 {
  font-size: 42px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-info {
  padding: 48px max(25px, calc((100vw - var(--max)) / 2));
  text-align: center;
}
.contact-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.contact-item svg {
  display: block;
  margin: 15px auto 8px;
  color: var(--navy);
}
.map {
  margin-top: 25px;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: linear-gradient(45deg, #b4cad8, #e1e7dc 40%, #98b7cf);
  background-size: 100% 100%;
  background-position: center;
}
:focus-visible {
  outline: 3px solid #ff9d55;
  outline-offset: 3px;
}
.form-box input:hover,
.form-box select:hover,
.form-box textarea:hover,
.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px #f36b1926;
}
.contact-form {
  padding: 45px;
  display: grid;
  place-items: center;
  background: #dce6ee;
}
.contact-form .form-box {
  width: min(410px, 100%);
  background: #fff;
  box-shadow: 0 5px 15px #09284833;
  max-width: 410px;
}
.contact-form .form-box textarea {
  display: none;
}
@media (max-width: 800px) {
  .top {
    height: 58px;
  }
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 18px 21px;
    z-index: 4;
    flex-direction: column;
    max-height: calc(100vh - 58px);
    overflow-y: auto;
  }
  .nav.open {
    display: flex;
  }
  .hero {
    min-height: 430px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 36px;
  }
  .products,
  .why,
  .team,
  .certs {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .detail-top,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .project-cards {
    grid-template-columns: 1fr;
  }
  .product-info h1 {
    font-size: 38px;
  }
  .main-image {
    height: auto;
  }
  .catalog {
    width: calc(100% - 42px);
    grid-template-columns: repeat(2, 1fr);
  }
  .tabs {
    overflow: auto;
    justify-content: start;
  }
  .tabs button {
    white-space: nowrap;
    padding: 11px 24px;
  }
  .use-cases {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-layout {
    grid-template-columns: 1fr;
  }
  .contact-info {
    padding: 38px 21px;
  }
  .contact-form {
    padding: 30px 21px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta .wrap {
    gap: 18px;
  }
  .about-footer {
    align-items: flex-start;
  }
  .stats {
    gap: 14px;
  }
  .cert-strip {
    flex-wrap: wrap;
    gap: 14px;
    font-size: 11px;
  }
  .actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 430px) {
  .wrap {
    width: min(var(--max), calc(100% - 30px));
  }
  .products,
  .why,
  .team,
  .certs,
  .use-cases {
    grid-template-columns: 1fr;
  }
  .catalog {
    grid-template-columns: 1fr;
  }
  .product-card .product-img {
    aspect-ratio: 16 / 9;
  }
  .hero h1 {
    font-size: 34px;
  }
  .section {
    padding: 37px 0;
  }
  .main-image {
    height: auto;
  }
  .thumb {
    width: 62px;
    height: 52px;
  }
  .specs {
    font-size: 15px;
  }
  .actions .button {
    font-size: 15px;
    padding: 14px;
  }
  .form-box {
    grid-template-columns: 1fr;
  }
  .contact-form .form-box h2 {
    grid-column: span 1 !important;
  }
  .form-box textarea,
  .form-box .button,
  .form-note {
    grid-column: span 1;
  }
  .contact-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta .wrap {
    display: block;
  }
  .about-footer {
    display: block;
  }
  .social-icons {
    margin-top: 18px;
  }
  .cta .button {
    margin-top: 14px;
  }
  .stats {
    flex-wrap: wrap;
  }
  .cert-strip .seal:nth-child(n + 4) {
    display: flex;
  }
  .seal svg {
    width: 26px;
    height: 26px;
  }
}

/* The supplied homepage comp is a high-density 1487px desktop export. */
@media (min-width: 801px) {
  body:has(.hero) .factory-layout {
    align-items: start;
  }
  body:has(.hero) .factory-showcase {
    height: 0;
    min-height: 100%;
    grid-template-rows: minmax(0, 1fr) auto;
  }
  body:has(.hero) .factory-visual {
    aspect-ratio: auto;
    height: 100%;
  }
  body:has(.hero) .project-mosaic-image {
    aspect-ratio: 2.05 / 1;
  }
  body:has(.hero) .hero {
    min-height: 600px;
  }
  body:has(.hero) .hero h1 {
    font-size: 78px;
  }
  body:has(.hero) .hero .button {
    padding: 17px 29px;
    font-size: 14px;
  }
  body:has(.hero) .cert-strip {
    min-height: 132px;
    gap: 72px;
  }
  body:has(.hero) .cert-strip .seal {
    font-size: 16px;
  }
  body:has(.hero) .cert-strip .seal svg {
    width: 50px;
    height: 50px;
  }
  body:has(.hero) .cert-strip + .section {
    padding: 38px 0 47px;
  }
  body:has(.hero) .title {
    font-size: 38px;
  }
  body:has(.hero) .product-card {
    padding: 14px;
    min-height: 315px;
  }
  body:has(.hero) .product-card .product-img {
    aspect-ratio: 1.55 / 1;
  }
  body:has(.hero) .product-card h3 {
    margin: 15px 0 17px;
    font-size: 23px;
  }
  body:has(.hero) .product-card > a:last-child {
    font-size: 14px;
  }
  body:has(.hero) .cert-strip + .section + .section {
    padding: 62px 0 70px;
  }
  body:has(.hero) .eyebrow {
    font-size: 14px;
  }
  body:has(.hero) .features {
    gap: 25px;
    margin: 32px 0 37px;
  }
  body:has(.hero) .feature {
    gap: 14px;
    font-size: 15px;
  }
  body:has(.hero) .feature svg {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  body:has(.hero) .factory-layout { gap: 58px; }
  body:has(.hero) .factory-visual {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    aspect-ratio: auto;
    background-size: cover;
  }
  body:has(.hero) .project-mosaic { padding: 19px 23px 21px; }
  body:has(.hero) .project-mosaic h3 { font-size: 18px; margin-bottom: 21px; }
  body:has(.hero) .project-mosaic-grid { gap: 15px; }
  body:has(.hero) .project-mosaic article b { font-size: 11px; }
  body:has(.hero) .project-mosaic article small { font-size: 8px; }
  body:has(.hero) .project-mosaic article a { padding: 7px 6px; font-size: 7px; }
  body:has(.hero) .section:not(.dark):not(.pale) {
    padding: 80px 0 90px;
  }
  body:has(.hero) .why {
    gap: 16px;
  }
  body:has(.hero) .why .card {
    min-height: 128px;
    padding: 20px;
    grid-template-columns: 43px 1fr;
    gap: 2px 12px;
    font-size: 15px;
  }
  body:has(.hero) .why .card svg {
    width: 40px;
    height: 40px;
  }
  body:has(.hero) .why .card small {
    font-size: 12px;
    line-height: 1.35;
  }
  body:has(.hero) .section.pale {
    padding: 78px 0 92px;
  }
  body:has(.hero) .faq article {
    min-height: 132px;
    margin-bottom: 13px;
    padding: 24px 28px;
  }
  body:has(.hero) .faq button {
    font-size: 17px;
  }
  body:has(.hero) .faq p {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.45;
  }
  body:has(.hero) + .footer,
  body:has(.hero) .footer {
    font-size: 13px;
  }
}

/* Elementor emits one wrapper per selectable section. Preserve the source's
 * direct-sibling spacing rules across those wrappers without touching content. */
.atlas-page-content > .elementor,
.atlas-page-content > .elementor > .elementor-element,
.atlas-page-content .elementor-widget-atlas_section,
.atlas-page-content .elementor-widget-atlas_section > .elementor-widget-container {
  width: 100%; max-width: none; margin: 0; padding: 0;
}
.elementor-widget-atlas_section:has(.cert-strip) + .elementor-widget-atlas_section .section { padding: 17px 0 19px; }
.elementor-widget-atlas_section:has(.cert-strip) + .elementor-widget-atlas_section + .elementor-widget-atlas_section .section { padding: 29px 0; }
.elementor-widget-atlas_section:has(.tabs) + .elementor-widget-atlas_section .section { padding: 18px 0 28px; }
@media (min-width: 801px) {
  .elementor-widget-atlas_section:has(.cert-strip) + .elementor-widget-atlas_section .section { padding: 38px 0 47px; }
  .elementor-widget-atlas_section:has(.cert-strip) + .elementor-widget-atlas_section + .elementor-widget-atlas_section .section { padding: 62px 0 70px; }
}

/* Shared site footer: a self-contained, reference-inspired ATLAS layout. */
body .footer.shared-footer {
  padding: 0;
  color: #d9e4ec;
  font-size: 9px;
  line-height: 1.38;
  background-color: #071f3a;
  background-image: linear-gradient(112deg, #061829 0%, #0b2c48 52%, #071b31 100%), repeating-linear-gradient(135deg, #ffffff08 0 1px, transparent 1px 8px);
}
.shared-footer__main { display: grid; grid-template-columns: 1.9fr .85fr 1.2fr 1.3fr 1.55fr; padding: 19px 0 17px; }
.shared-footer__main > * { min-width: 0; padding: 0 12px; }
.shared-footer__main > :first-child { padding-left: 0; }
.shared-footer__main > :not(:first-child) { border-left: 1px solid #b7c9d633; }
.shared-footer .brand { display: inline-flex; margin: 0 0 7px; color: #fff; font-size: 19px; letter-spacing: -.6px; }
.shared-footer .brand b { color: #fff; }
.shared-footer .mark { width: 27px; height: 30px; }
.shared-footer__brand p { max-width: 245px; margin: 0 0 9px; color: #b8c8d5; }
.shared-footer address { display: grid; gap: 3px; font-style: normal; }
.footer.shared-footer h4 { margin: 2px 0 8px; color: #fff; font-size: 11px; line-height: 1.2; }
.footer.shared-footer a { width: fit-content; max-width: 100%; margin: 0; color: #d9e4ec; }
.footer.shared-footer a:hover { color: #fff; text-decoration-color: #f36b19; }
.footer.shared-footer a:focus-visible, .footer.shared-footer button:focus-visible, .footer.shared-footer input:focus-visible { outline: 3px solid #ffd06a; outline-offset: 3px; }
.shared-footer__links { display: grid; align-content: start; gap: 4px; }
.shared-footer__links a::before { content: "›"; margin-right: 5px; color: #f5843e; font-weight: 700; }
.shared-footer__social { display: flex; gap: 7px; margin-bottom: 10px; }
.footer.shared-footer .shared-footer__social a { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid #d9e4ecaa; border-radius: 50%; color: #fff; font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; text-decoration: none; }
.shared-footer__social a:hover { border-color: #f36b19; background: #f36b19; }
.shared-footer__subscribe { display: flex; margin: 0 0 11px; }
.shared-footer__subscribe input { min-width: 0; width: 100%; height: 24px; border: 0; border-radius: 2px 0 0 2px; padding: 0 7px; color: #162f45; font: inherit; }
.shared-footer__subscribe input::placeholder { color: #657383; opacity: 1; }
.shared-footer__subscribe button { flex: 0 0 auto; min-height: 24px; border: 0; border-radius: 0 2px 2px 0; padding: 0 8px; background: #f36b19; color: #fff; font: inherit; font-size: 7px; font-weight: 700; text-transform: uppercase; cursor: pointer; }
.shared-footer__subscribe button:hover { background: #d95b10; }
.shared-footer__badges { display: flex; gap: 7px; align-items: center; }
.shared-footer__badges span { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid #d9e4ec99; border-radius: 50%; color: #edf4f8; font-size: 4px; font-weight: 700; line-height: 1.1; text-align: center; }
.shared-footer__badges span:nth-child(2) { border-radius: 4px; }
.shared-footer__badges span:nth-child(3) { border-radius: 0; transform: rotate(45deg); }
.shared-footer__badges span:nth-child(3) { font-size: 4px; }
.shared-footer__badges span:nth-child(3) .atlas-badge-copy { display: block; transform: rotate(-45deg); line-height: 1.1; }
.shared-footer__badges span:nth-child(4) { border-radius: 50% 50% 4px 4px; }
.shared-footer__bottom { border-top: 1px solid #b7c9d633; background: #04152699; }
.shared-footer__bottom .wrap { display: flex; min-height: 18px; align-items: center; justify-content: space-between; gap: 18px; color: #aabac7; font-size: 7px; }
.shared-footer__bottom small { font-size: inherit; }
.shared-footer__bottom nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0; }
.shared-footer__bottom nav a { padding: 0 7px; border-right: 1px solid #aabac766; }
.shared-footer__bottom nav a:last-child { padding-right: 0; border-right: 0; }
.shared-footer__visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; clip-path: inset(50%); }
@media (max-width: 800px) {
  body .footer.shared-footer { font-size: 11px; line-height: 1.45; }
  .shared-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 25px; }
  .shared-footer__main > * { padding: 0 18px; }
  .shared-footer__main > :nth-child(3) { border-left: 0; padding-left: 0; }
  .shared-footer__main > :nth-child(2) { padding-right: 0; }
  .shared-footer__main > :nth-child(4) { padding-right: 0; }
}
@media (max-width: 430px) {
  .footer.shared-footer h4 { font-size: 13px; }
  .footer.shared-footer .shared-footer__social a { width: 30px; height: 30px; font-size: 12px; }
  .shared-footer__main { grid-template-columns: 1fr; gap: 20px; padding: 27px 0 22px; }
  .shared-footer__main > *, .shared-footer__main > :first-child, .shared-footer__main > :nth-child(n) { padding: 0; border-left: 0; }
  .shared-footer__links { gap: 6px; }
  .shared-footer__follow { max-width: 320px; }
  .shared-footer__bottom .wrap { min-height: 0; align-items: flex-start; flex-direction: column; gap: 8px; padding: 12px 0; }
  .shared-footer__bottom nav { justify-content: flex-start; }
  .shared-footer__bottom nav a:first-child { padding-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .button:hover,
  .product-card:hover,
  .project-cards .card:hover,
  .use-cases .card:hover,
  .team .card:hover,
  .certs .card:hover,
  .why .card:hover {
    transform: none;
  }
  .social-icons a:hover {
    transform: none;
  }
}

/* Design-reference alignment: shared desktop geometry and editorial system. */
:root {
  --navy: #062747;
  --ink: #08294d;
  --orange: #f46b18;
  --pale: #f3f7f9;
  --muted: #617285;
  --max: 1200px;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42;
}
.top { height: 58px; }
.header { width: min(var(--max), calc(100% - 54px)); }
.brand { font-size: 18px; letter-spacing: -.7px; }
.brand small { display: block; font-size: 6px; letter-spacing: .45px; color: #fff; line-height: 1; }
.mark { width: 25px; height: 28px; border-width: 2px; }
.nav { gap: 27px; font-size: 10px; }
.section { padding: 46px 0; }
.title { font-size: 28px; line-height: 1.08; }
.eyebrow { font-size: 10px; }
.button { border-radius: 2px; padding: 10px 18px; font-size: 10px; }
.hero {
  min-height: 510px;
  background-position: center;
}
body:has(.hero) .hero { min-height: 255px; }
body:has(.hero) .cert-strip + .section { padding: 17px 0 19px; }
body:has(.hero) .cert-strip + .section + .section { padding: 29px 0; }
.hero h1, .page-hero h1 {
  font-size: 45px;
  line-height: .98;
  text-shadow: 0 2px 3px #00132699;
}
.hero p { font-size: 14px; margin: 14px auto 20px; }
.hero .button + .button { margin-left: 10px; }
.cert-strip { min-height: 57px; padding: 8px; gap: 47px; }
.seal { gap: 6px; font-size: 10px; }
.seal svg { width: 30px; height: 30px; }
.section.dark { background: linear-gradient(110deg, #062747, #0d385e); }
.products { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { padding: 9px; border-radius: 5px; }
.product-card .product-img { aspect-ratio: 1.8 / 1; background-size: contain; background-repeat: no-repeat; }
.product-card h3 { font-size: 14px; line-height: 1.12; margin: 10px 0 6px; }
.product-card p { min-height: 0; margin: 0 0 10px; font-size: 10px; line-height: 1.25; }
.product-card > a:last-child { position: relative; z-index: 2; color: var(--ink); font-size: 10px; font-weight: 700; }
.split { gap: 32px; }
.split > .media { aspect-ratio: 1.45 / 1; }
.features { grid-template-columns: 1fr; gap: 14px; margin: 20px 0; }
.feature { font-size: 10px; gap: 9px; }
.feature svg { width: 28px; height: 28px; flex-basis: 28px; }
.project-cards { gap: 12px; }
.project-cards .card { padding: 7px; font-size: 10px; }
.project-cards .media { aspect-ratio: 1.64 / 1; }
.project-cards b { display: block; margin-top: 7px; }
.project-cards p { margin: 3px 0 1px; }
.factory-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 38px; align-items: start; }
.factory-copy { padding-top: 6px; }
.factory-showcase { display: grid; gap: 18px; min-width: 0; }
.factory-visual { min-height: 0; aspect-ratio: 1.72 / 1; border-left: 3px solid var(--orange); background-position: center; }
.project-mosaic { width: 100%; padding: 14px 17px 16px; background: #fff; color: var(--ink); box-shadow: 0 4px 15px #00172d55; text-align: center; }
.project-mosaic h3 { position: relative; margin: 0 0 16px; font-size: 15px; }
.project-mosaic h3::after { content: ""; position: absolute; left: 50%; bottom: -7px; width: 50px; height: 2px; transform: translateX(-50%); background: var(--orange); }
.project-mosaic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.project-mosaic article { display: flex; min-width: 0; overflow: hidden; flex-direction: column; border: 1px solid #e1e6e9; border-top: 2px solid var(--orange); border-radius: 4px; text-align: left; box-shadow: 0 2px 6px #00172d25; transition: transform 160ms ease, box-shadow 160ms ease; }
.project-mosaic article:hover, .project-mosaic article:focus-within { transform: translateY(-2px); box-shadow: 0 6px 14px #00172d35; }
.project-mosaic-image { aspect-ratio: 1.55 / 1; background-position: center; background-size: cover; }
.project-mosaic article b { padding: 7px 8px 0; font-size: 9px; line-height: 1.12; }
.project-mosaic article small { flex: 1; padding: 4px 8px 7px; color: var(--muted); font-size: 7px; line-height: 1.2; }
.project-mosaic article a { margin: 0 8px 8px; padding: 5px 6px; border-radius: 2px; background: var(--orange); color: #fff; font-size: 6px; font-weight: 700; text-align: center; }
.why { grid-template-columns: repeat(4, 1fr); gap: 9px; }
.why .card { min-height: 75px; padding: 10px; grid-template-columns: 27px 1fr; gap: 0 7px; font-size: 10px; text-align: left; }
.why .card svg { width: 25px; height: 25px; }
.why .card small { font-size: 8px; line-height: 1.2; }
.faq { max-width: 100%; }
.faq article { background: #fff; border: 0; border-radius: 4px; margin: 0 0 7px; padding: 12px 14px; }
.faq button { font-size: 11px; }
.faq p { margin: 9px 0 0; font-size: 10px; }
.footer { padding: 31px 0 12px; font-size: 10px; }
.footer-grid { grid-template-columns: 1.65fr repeat(3, 1fr); gap: 21px; }
.footer h4 { font-size: 11px; }
.footer a { margin: 4px 0; }

/* Product catalogue */
.page-hero { min-height: 208px; background-position: center; }
.page-hero p { margin: 10px 0 0; font-size: 12px; }
.tabs { background: #d9e4ea; }
.tabs button { min-width: 138px; padding: 10px 35px; font-size: 10px; background: #667f91; }
.catalog { width: min(840px, calc(100% - 42px)); max-width: none; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tabs + .section { padding: 18px 0 28px; }
.catalog .product-card { padding: 13px; }
.catalog .product-card h3 { font-size: 15px; line-height: 1.15; margin: 12px 0 8px; }
.catalog .product-card .product-img { aspect-ratio: 2.05 / 1; }
.catalog .product-card small { display: inline; font-size: 8px; line-height: 1.15; border: 1px solid #cbd4da; padding: 2px 3px; white-space: normal; }
.catalog .product-meta { display: flex; align-items: center; gap: 5px; min-height: 16px; white-space: nowrap; }
.catalog .product-meta small { flex: 0 0 auto; white-space: nowrap; }
.catalog .product-card p { font-size: 10px; line-height: 1.3; margin: 8px 0 11px; }
.catalog .product-card .button { padding: 9px 16px; font-size: 10px; }

/* Product detail */
.crumb { padding: 16px 0 9px; font-size: 15px; }
.detail-top { padding-top: 14px; padding-bottom: 38px; gap: 54px; }
.main-image { aspect-ratio: 1.25 / 1; background-size: contain; background-repeat: no-repeat; background-color: #f1f2f3; }
.thumbs { gap: 11px; margin-top: 12px; }
.thumb { width: 88px; height: 69px; background-size: contain; background-repeat: no-repeat; background-color: #eceff1; }
.product-info h1 { font-size: 61px; line-height: 1.03; margin-bottom: 21px; }
.specs { font-size: 16px; line-height: 1.85; margin: 0; }
.specs svg { width: 21px; height: 21px; color: var(--ink); }
.actions { gap: 16px; margin-top: 20px; }
.actions .button { min-width: 185px; justify-content: center; font-size: 16px; padding: 15px 19px; }
.compare { padding: 36px 0 32px; }
.compare .title { margin: 7px 0 21px; font-size: 23px; }
.compare table { width: 78%; margin: auto; font-size: 10px; }
.compare th, .compare td { padding: 7px 8px; }
.compare td a { display: inline-block; background: var(--orange); color: #fff; padding: 2px 6px; border-radius: 9px; font-size: 8px; font-weight: bold; white-space: nowrap; }
.compare-download { margin-top: 15px; padding: 7px 14px; font-size: 9px; text-transform: none; border-radius: 16px; }
.use-cases { grid-template-columns: repeat(5, 1fr); gap: 12px; }
.use-cases .card { border-top: 3px solid var(--orange); }
.use-cases .media { aspect-ratio: 1.6 / 1; background-size: cover; }
.use-cases .card h3 { font-size: 12px; margin: 9px 0 0; }
.use-cases .card p { font-size: 9px; margin: 4px 0 9px; }
.use-cases .card a { display: block; padding: 0 10px 10px; color: var(--orange); font-size: 9px; font-weight: 700; }
.inquiry { padding: 32px 0; }
.form-layout { grid-template-columns: 240px 1fr; gap: 40px; }
.form-layout > div p { font-size: 10px; color: var(--muted); }
.form-box { padding: 16px; gap: 9px; box-shadow: 0 3px 10px #00234b17; }
.form-box textarea, .form-box input, .form-box select { padding: 8px 10px; font-size: 11px; }
.form-layout .form-box label { display: grid; gap: 4px; color: #111; font-size: 10px; font-weight: 700; }
.form-layout .form-heading { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #d8dfe4; padding-bottom: 7px; }
.form-layout .form-heading h3 { margin: 0; color: var(--ink); font-size: 17px; }
.form-layout .form-heading small { color: var(--muted); font-size: 8px; }
.form-layout .message-field { grid-column: 1 / -1; }
.form-layout .privacy-note { grid-column: 1 / -1; margin: -2px 0 0; color: var(--muted); font-size: 8px; text-align: center; }

/* About */
.about-hero { min-height: 245px; }
.about-hero h1 { max-width: 620px; font-size: 35px; line-height: 1.04; }
.about-hero p { margin: 7px 0 0; color: #d9e2ea; }
.about-hero .eyebrow { text-transform: none; }
.stats { border-bottom: 3px solid var(--orange); padding-bottom: 9px; justify-content: space-between; gap: 0; font-size: 18px; }
.stats > div { padding-right: 13px; border-right: 1px solid #9da9b3; }
.stats > div:last-child { border: 0; padding-right: 0; }
.stats span { font-size: 9px; }
.team { gap: 14px; }
.team .media { aspect-ratio: 1.5 / 1; background-size: 74% auto; background-repeat: no-repeat; background-position: center 31%; background-color: #dce5e9; }
.team h3 { font-size: 15px; margin: 8px 10px 2px; }
.team p { font-size: 11px; margin: 0 10px 10px; }
.timeline { padding: 36px 0 96px; }
.timeline .title { font-size: 25px; margin: 7px 0 38px; }
.timeline-grid { grid-template-columns: repeat(6, 1fr); gap: 0; align-items: center; }
.timeline-grid article { border-top: 2px solid var(--orange); padding: 19px 10px 0; min-height: 75px; font-size: 10px; text-align: left; }
.timeline-grid article:nth-child(even) { transform: translateY(54px); }
.timeline-grid b { font-size: 16px; }
.certs { gap: 12px; }
.certs .card { min-height: 190px; padding: 14px; text-align: left; }
.certs .card > svg { float: left; width: 36px; height: 36px; margin: 0 9px 10px 0; }
.certs .card b { display: block; padding-top: 7px; }
.certs .card p { clear: both; font-size: 10px; }
.sustainability-media { width: min(100%, 390px); aspect-ratio: 1.07 / 1.25 !important; background-size: cover; }
.sustain-list { font-size: 11px; }
.cta { padding: 20px 0; }
.cta h2 { font-size: 24px; margin: 0; }

/* Contact */
.contact-hero { height: 125px; }
.contact-hero h1 { font-size: 38px; }
.contact-info { padding: 43px max(25px, calc((100vw - var(--max)) / 2)); }
.contact-info .title { font-size: 24px; }
.contact-list { gap: 15px; }
.contact-item { font-size: 12px; }
.contact-item svg { margin: 14px auto 7px; width: 30px; height: 30px; }
.contact-item small { font-size: 10px; }
.map { margin: 27px auto 0; max-width: 390px; aspect-ratio: 1.52 / 1; }
.contact-form { padding: 44px; }
.contact-form { place-items: start center; }
.contact-form .form-box { max-width: 390px; padding: 24px; }
.contact-form .form-box .title { font-size: 25px; margin-bottom: 5px; }
.contact-info > .title, .contact-info > .contact-list, .contact-info > .map { width: min(390px, 100%); margin-left: auto; margin-right: 37px; }
.contact-form .form-box { transform: translateX(-110px); }
.contact-form .form-box label { display: block; color: #111; font-size: 11px; font-weight: 700; }
.contact-form .form-box label input, .contact-form .form-box label select { margin-top: 4px; }
.contact-footer { padding-top: 25px; }
.contact-footer-nav { display: flex; align-items: center; gap: 36px; border-bottom: 1px solid #ffffff33; padding-bottom: 20px; }
.contact-footer-nav h3 { margin: 0 auto 0 0; color: #fff; font-size: 17px; }
.contact-footer-nav a { margin: 0; font-size: 11px; }

@media (max-width: 800px) {
  .header { width: min(var(--max), calc(100% - 32px)); }
  .hero { min-height: 430px; }
  .hero h1, .page-hero h1 { font-size: 35px; }
  .hero .button + .button { margin: 8px 0 0; }
  .products, .why, .team, .certs { grid-template-columns: repeat(2, 1fr); }
  .detail-top { gap: 25px; }
  .product-info h1 { font-size: 39px; }
  .compare table { width: 100%; min-width: 650px; }
  .timeline-grid article:nth-child(even) { transform: none; }
  .timeline-grid { gap: 15px; }
  .timeline-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline-grid article { min-height: 85px; }
  .factory-layout { grid-template-columns: 1fr; gap: 28px; }
  .factory-showcase { gap: 14px; }
  .factory-visual { aspect-ratio: 1.55 / 1; }
  .project-mosaic { width: 100%; }
}
@media (max-width: 430px) {
  .hero { min-height: 440px; }
  .hero h1 { font-size: 31px; }
  .cert-strip { gap: 8px 15px; }
  .products, .why, .team, .certs, .use-cases, .catalog { grid-template-columns: 1fr; }
  .product-card .product-img { aspect-ratio: 1.75 / 1; }
  .tabs button { min-width: 123px; padding: 10px 18px; }
  .detail-top { padding-bottom: 29px; }
  .main-image { aspect-ratio: 1.18 / 1; }
  .thumb { width: calc((100vw - 57px) / 4); height: 54px; }
  .product-info h1 { font-size: 35px; }
  .specs { font-size: 14px; }
  .actions .button { min-width: 0; flex: 1; font-size: 13px; padding: 13px 9px; }
  .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats > div:nth-child(2) { border: 0; }
  .timeline-grid { grid-template-columns: 1fr; }
  .contact-footer-nav { flex-wrap: wrap; gap: 12px 18px; }
  .contact-footer-nav h3 { width: 100%; }
  .timeline-grid article { min-height: 0; }
  .contact-info, .contact-form { padding: 35px 20px; }
  .contact-info > .title, .contact-info > .contact-list, .contact-info > .map { margin-left: auto; margin-right: auto; }
  .contact-form .form-box { transform: none; }
  .catalog .product-meta { flex-wrap: wrap; white-space: normal; }
  .form-layout { grid-template-columns: 1fr; gap: 24px; }
  .project-mosaic { padding: 13px; }
  .project-mosaic-grid { grid-template-columns: 1fr; gap: 12px; }
  .project-mosaic-image { aspect-ratio: 1.65 / 1; }
  .project-mosaic article b { font-size: 11px; }
  .project-mosaic article small { font-size: 9px; }
  .project-mosaic article a { font-size: 8px; }
  .form-layout .form-box { width: 100%; }
  .form-layout .form-box label,
  .form-layout .form-heading,
  .form-layout .message-field,
  .form-layout .privacy-note { grid-column: 1 / -1; }
}

@media (min-width: 801px) {
  body:has(.hero) .hero {
    min-height: 600px;
  }
  body:has(.hero) .hero h1 {
    max-width: 1000px;
  }
  body:has(.hero) .cert-strip + .section {
    padding: 38px 0 47px;
  }
  body:has(.hero) .cert-strip + .section + .section {
    padding: 62px 0 70px;
  }
  body:has(.hero) .faq article {
    min-height: 155px;
  }
}
