body {
  background: #fff;
}

.topbar {
  min-height: 82px;
  padding: 14px 5.2vw;
  border-radius: 0;
  box-shadow: 0 2px 18px rgba(20, 24, 31, .06);
}

.brand img {
  width: 62px;
}

.brand b {
  font-size: 24px;
}

.topbar nav {
  gap: 28px;
}

.topbar nav a {
  padding: 9px 0;
}

.topbar nav a:first-child:after {
  right: 0;
}

.cta.small {
  min-width: 178px;
}

.hero {
  min-height: 560px;
  grid-template-columns: minmax(430px, .8fr) 1fr;
  align-items: center;
  padding: 70px 5.8vw 86px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 36%, rgba(255,255,255,.2) 68%),
    url("https://images.unsplash.com/photo-1590674899484-d5640e854abe?auto=format&fit=crop&w=2200&q=90") center right / cover;
}

.hero:after {
  height: 90px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.86));
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.05;
}

.hero p {
  max-width: 520px;
  font-size: 19px;
}

.hero .eyebrow {
  width: 72px;
  height: 5px;
  overflow: hidden;
  color: transparent;
  background: var(--amber);
  margin-bottom: 20px;
}

.video-card {
  justify-self: end;
  max-width: 380px;
  min-height: 220px;
  margin-right: 3vw;
}

.hero-badges {
  position: absolute;
  left: 10.5vw;
  right: 10.5vw;
  bottom: 16px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hero-badges div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 15px;
  align-items: center;
  min-height: 86px;
  padding: 17px 20px;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(18, 22, 29, .18);
}

.hero-badges span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  color: var(--amber2);
  font-size: 30px;
}

.hero-badges b {
  font-size: 16px;
  line-height: 1.1;
}

.hero-badges small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.stats {
  display: none;
}

.section {
  max-width: 1220px;
  padding: 30px 20px 0;
}

.section h2 {
  font-size: 34px;
}

.section-head {
  margin-bottom: 18px;
}

.section-head .eyebrow {
  display: none;
}

.cards {
  gap: 14px;
}

.services {
  grid-template-columns: repeat(4, 1fr);
}

.services a {
  min-height: 118px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border-radius: 8px;
  padding: 20px 16px;
  box-shadow: 0 3px 14px rgba(18, 22, 29, .08);
}

.services a:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 64px;
  width: 46px;
  height: 4px;
  transform: translateX(-50%);
  background: var(--amber);
}

.tile-icon {
  width: auto;
  height: auto;
  margin: 0 0 18px;
  border-radius: 0;
  background: transparent;
  color: #14181f;
  font-size: 44px;
}

.services h3 {
  margin: 0;
  font-size: 17px;
}

.services p,
.services b {
  display: none;
}

.works {
  grid-template-columns: repeat(3, 1fr);
}

.works article:first-child {
  grid-column: auto;
}

.works img,
.works article:first-child img {
  height: 170px;
}

.works article {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(18, 22, 29, .09);
}

.works article > div {
  padding: 14px 16px 16px;
}

.works h3 {
  font-size: 17px;
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.machine-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(18, 22, 29, .09);
}

.machine-grid img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
}

.machine-grid h3 {
  margin: 14px 16px 2px;
  font-size: 17px;
  font-weight: 900;
}

.machine-grid p {
  margin: 0 16px 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dark {
  display: none;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.adv-grid article {
  min-height: 150px;
  padding: 20px 14px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(18, 22, 29, .07);
}

.adv-grid span {
  color: var(--amber2);
  font-size: 42px;
}

.adv-grid h3 {
  margin: 8px 0 6px;
  font-size: 15px;
  line-height: 1.15;
}

.adv-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.process {
  margin-top: 22px;
  gap: 0;
}

.process div {
  border: 0;
  text-align: center;
  box-shadow: none;
}

.process div:after {
  content: "";
  position: absolute;
  left: 70%;
  right: -30%;
  top: 41px;
  border-top: 2px dashed #c7cdd6;
}

.process div:last-child:after {
  display: none;
}

.process b {
  margin: 0 auto 10px;
}

.estimate {
  max-width: 1220px;
  margin-top: 30px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(18,22,29,.88), rgba(18,22,29,.72)),
    url("https://images.unsplash.com/photo-1471201187657-6406da15e43b?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.contact-band {
  max-width: 1220px;
  margin-top: 0;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: #161a21;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}

.contact-band > div {
  border-radius: 0;
  background: #161a21;
  color: #fff;
}

.contact-band iframe {
  border-radius: 0;
}

footer {
  display: none;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-badges,
  .services,
  .machine-grid,
  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 42px 18px 26px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-badges,
  .services,
  .works,
  .machine-grid,
  .adv-grid,
  .process,
  .estimate,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .video-card {
    margin-right: 0;
  }

  .process div:after {
    display: none;
  }
}
