:root {
  --page-max: 100vw;
  --content-gutter: 0px;
  --cyan: #08cde7;
  --teal: #078bad;
  --deep-teal: #005879;
}

picture { display: contents; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: #111;
  font-family: "Open Sans", Arial, sans-serif;
}

.page {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.topbar {
  height: clamp(92px, 7.3vw, 142px);
  padding: 0 calc(var(--content-gutter) + 67px);
  display: flex;
  align-items: center;
  gap: 44px;
  background: linear-gradient(100deg, #000 0%, #030303 36%, #191919 70%, #444 100%);
}

.brand {
  width: clamp(208px, 17.5vw, 348px);
  aspect-ratio: 2670 / 881;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  background: url("assets/logo-header.webp") left center / contain no-repeat;
  mix-blend-mode: lighten;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-icons {
  margin-left: 35px;
  display: flex;
  align-items: center;
  gap: 35px;
  color: #fff;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 29px;
  height: 5px;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -11px; }
.menu-icon::after { top: 11px; }

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 6.5vw 0 0 4.16vw;
}

.hero-kicker {
  margin: 0;
  font-size: 70px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 2px;
}

.hero h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: 3.78vw;
  line-height: 1;
  font-weight: 800;
}

.hero-energy {
  margin: 0.6vw 0 0 7.8vw;
  text-transform: uppercase;
  font-size: 3.6vw;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.1vw;
}

.lead {
  margin: 2.7vw 0 0 1.1vw;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.65vw;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: .03vw;
}

.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 276px;
  height: 73px;
  border: 0;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 800;
  cursor: pointer;
}

.hero .button {
  margin: 8.5vw 0 0 8vw;
  width: 17.4vw;
  height: 4.35vw;
  min-height: 0;
  font-size: 1.55vw;
  border-radius: 0.62vw;
}

.hero-machine {
  display: none;
}

.section-label {
  position: absolute;
  z-index: 5;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 282px;
  height: 65px;
  padding: 0 30px;
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
}

.label-dark { background: #020202; }
.label-teal { background: var(--teal); }

.outline {
  position: absolute;
  pointer-events: none;
  opacity: .105;
}

.about {
  position: relative;
  height: 800px;
  overflow: hidden;
  padding: 158px calc(var(--content-gutter) + 64px) 0;
  color: #fff;
  background: linear-gradient(180deg, #00658b 0%, #004a6f 50%, #00375c 86%, #003358 100%);
}

.about::before {
  display: none;
}

.about .section-label {
  left: calc(var(--content-gutter) - 16px);
  top: 50px;
  width: 304px;
  justify-content: center;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 38px;
  letter-spacing: 0;
}

.outline-about {
  display: none;
}

.about-text {
  position: relative;
  z-index: 2;
  width: 610px;
  font-size: 23px;
  line-height: 1.395;
  font-weight: 400;
}

.about-text p {
  margin: 0 0 35px;
}

.solution-grid {
  position: absolute;
  z-index: 2;
  right: calc(var(--content-gutter) + 157px);
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 112px 116px;
}

.solution-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 1.08;
}

.solution-grid strong { font-weight: 600; }

.solution-icon {
  display: block;
  width: 170px;
  height: 162px;
  object-fit: contain;
  object-position: center bottom;
  margin-bottom: 10px;
  opacity: .92;
}

.bars,
.chain,
.recycle {
  display: block;
  margin-bottom: 34px;
  opacity: .63;
}

.bars {
  width: 98px;
  height: 82px;
  background: linear-gradient(90deg, transparent 0 16%, var(--cyan) 16% 27%, transparent 27% 37%, var(--cyan) 37% 48%, transparent 48% 58%, var(--cyan) 58% 69%, transparent 69% 79%, var(--cyan) 79% 90%, transparent 90%);
  clip-path: polygon(0 86%, 21% 86%, 21% 70%, 34% 70%, 34% 53%, 47% 53%, 47% 36%, 60% 36%, 60% 18%, 73% 18%, 73% 0, 100% 0, 100% 100%, 0 100%);
}

.bars-tall {
  height: 91px;
  transform: translateY(-7px);
}

.chain {
  width: 82px;
  height: 58px;
  border: 15px solid var(--cyan);
  border-radius: 19px;
  transform: rotate(45deg);
}

.recycle {
  width: 78px;
  height: 78px;
  border: 17px solid var(--cyan);
  border-left-color: transparent;
  border-radius: 50%;
}

.alliance {
  position: relative;
  height: 1314px;
  padding: 190px calc(var(--content-gutter) + 64px) 0;
  color: #111;
  background: #d7d7d7;
}

.outline-alliance {
  width: 1830px;
  left: calc(var(--content-gutter) - 230px);
  top: 36px;
  opacity: .06;
}

.alliance-head {
  position: absolute;
  z-index: 4;
  left: calc(var(--content-gutter) - 16px);
  top: 67px;
  display: flex;
  align-items: center;
  gap: 112px;
}

.alliance-head .section-label {
  position: static;
  width: 402px;
}

.gh-logo {
  display: block;
  height: 104px;
  width: auto;
}

.alliance-copy {
  position: relative;
  z-index: 2;
  width: 700px;
  padding-left: 5px;
  font-size: 22px;
  line-height: 1.31;
  font-weight: 400;
}

.alliance-copy p {
  margin: 0 0 34px;
}

.alliance-photos {
  position: absolute;
  z-index: 4;
  right: calc(var(--content-gutter) + 112px);
  top: 32px;
  width: 665px;
  display: grid;
  gap: 76px;
}

.alliance-photos > img,
.alliance-photo-crop img {
  width: 100%;
  height: 412px;
  object-fit: cover;
}

.alliance-photo-crop {
  width: 100%;
  height: 412px;
  overflow: hidden;
}

.alliance-photo-crop img {
  width: calc(100% + 24px);
  max-width: none;
  transform: translateX(-2px);
  object-position: left center;
}

.alliance-band {
  display: none;
}

.equipment {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(115deg, #444 0%, #282828 54%, #1d1d1d 100%);
}

.after-sales {
  position: relative;
  z-index: 2;
  overflow: visible;
  clip-path: inset(-60px 0 0 0);
  color: #fff;
  background: linear-gradient(180deg, #003e5e 0%, #003757 100%);
  padding: 0 40px 64px;
}

.equipment {
  z-index: 1;
  margin-top: -270px;
  height: auto;
  padding: 76px calc(var(--content-gutter) + 82px) 110px;
}

.outline-equipment {
  right: calc(var(--content-gutter) - 225px);
  top: -74px;
  width: 1780px;
  opacity: .07;
}

.equipment h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 69px;
  text-align: center;
  text-transform: uppercase;
  font-size: 71px;
  line-height: 1;
  font-weight: 800;
}

.equipment-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.equipment-card {
  height: auto;
  overflow: hidden;
  background: transparent;
  border-top: none;
}

.equipment-card img {
  display: block;
  width: 100%;
  height: auto;
}

.equip-photo {
  height: 180px;
  background: var(--asset-turbina) center / cover no-repeat;
}

.equipment-card h3 {
  margin: 0;
  padding: 8px 31px 9px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  background: #087f99;
  text-transform: uppercase;
}

.equipment-card h3 span {
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.equipment-card h3 small {
  font-size: 29px;
  line-height: 1;
  font-weight: 800;
}

.equipment-card p {
  margin: 0;
  padding: 20px 30px 17px;
  background: linear-gradient(135deg, #079eb9, #00687f);
  font-size: 14px;
  line-height: 1.28;
}

.equipment-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.equipment-card th,
.equipment-card td {
  padding: 7px 20px;
  text-align: left;
}

.equipment-card th:not(:first-child),
.equipment-card td:not(:first-child) {
  text-align: center;
}

.equipment-card tr:first-child {
  background: #008da9;
  color: #fff;
}

.equipment-card tr:nth-child(n+2):nth-child(even) {
  background: #dff4f8;
  color: #083452;
}

.equipment-card tr:nth-child(n+2):nth-child(odd) {
  background: #aee7f0;
  color: #083452;
}

.after-sales {
  height: auto;
}

.after-sales .section-label {
  left: calc(var(--content-gutter) - 16px);
  top: -30px;
  width: 336px;
}

.outline-after {
  width: 1780px;
  left: calc(var(--content-gutter) - 246px);
  bottom: -52px;
  opacity: .07;
}

.service {
  position: relative;
  z-index: 2;
  margin: 0;
  min-height: 230px;
  padding: 28px 40px;
  background: #0e0e0e;
  border-radius: 8px;
  color: #fff;
  font-size: 46px;
  line-height: 1.15;
  font-style: normal;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
}

.service > span:not(.service-body) {
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 92px;
  line-height: .8;
  font-weight: 800;
  font-style: italic;
}

.service-body {
  flex: 0 1 auto;
  text-align: left;
  color: #fff;
}

.service::before {
  display: none;
}

.service em {
  border-bottom: 0;
  font-style: normal;
}

.service b { font-weight: 300; }

.service strong {
  color: var(--cyan);
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
}

/* Box 2 tem mais texto — fonte menor para caber na mesma caixa */
.service-2 { font-size: 34px; }
.service-2 strong { font-size: 34px; }

.service-3 {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 35px);
}

.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 22px 70px;
  max-width: 1460px;
  margin: 0 auto;
  padding-top: 88px;
}

.contact {
  position: relative;
  padding-top: 106px;
  background: #fff;
}

.contact .section-label {
  left: calc(var(--content-gutter) - 16px);
  top: 40px;
  width: 272px;
}

.contact-title {
  margin: 26px 0 10px;
  padding: 0 8.9% 0 8.47%;
  text-align: left;
  color: #464646;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
}

.contact-form {
  padding: 76px calc(var(--content-gutter) + 130px) 70px;
  display: grid;
  grid-template-columns: 648px 648px;
  column-gap: 84px;
  background: var(--deep-teal);
  color: #fff;
}

.fields {
  display: grid;
  gap: 17px;
  align-content: start;
}

.contact-form label {
  display: block;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 12px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #111;
  font: 20px "Open Sans", Arial, sans-serif;
}

.contact-form input {
  height: 50px;
}

.message textarea {
  height: 366px;
  resize: vertical;
}

.contact-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.message {
  width: 100%;
}

.contact-form button {
  width: 234px;
  height: 50px;
  margin-top: 17px;
  background: #000;
}

.footer {
  position: relative;
  height: auto;
  min-height: 360px;
  padding: 80px 32px 60px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: linear-gradient(105deg, #303030 0%, #252525 52%, #303030 100%);
}

.footer-mark {
  position: absolute;
  right: -330px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: auto;
}

.social {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 29px;
  margin-bottom: 70px;
}

.social a {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #00c8e7;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
}

.footer p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 800;
}

.footer-line {
  position: relative;
  z-index: 2;
  display: block;
  width: 679px;
  height: 5px;
  margin: 102px auto 0;
  background: var(--cyan);
}

.footer .copyright {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .5);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .3px;
}

.contact-form .no-label input {
  margin-top: 0;
}

@media (max-width: 1300px) {
  .page {
    width: 100%;
    margin: 0;
  }

  .topbar,
  .hero,
  .about,
  .alliance,
  .equipment,
  .contact-form {
    transform-origin: top center;
  }

  .nav { gap: 16px; }
  .nav a { font-size: 14px; }
  .hero-machine { width: 760px; }
  .solution-grid { right: 70px; }
  .alliance-photos { right: 64px; width: 560px; }
  .alliance-copy { width: 610px; font-size: 21px; }
  .contact-form { grid-template-columns: 1fr 1fr; padding-left: 70px; padding-right: 70px; }
}

@media (min-width: 901px) and (max-width: 1600px) {
  .topbar {
    padding-left: 48px;
    padding-right: 48px;
    gap: 28px;
  }

  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 15px;
  }

  .header-icons {
    margin-left: 18px;
    gap: 24px;
  }

  .hero-copy {
    padding-left: 4%;
  }

  .about {
    padding-left: 48px;
    padding-right: 48px;
  }

  .about-text {
    width: min(48vw, 610px);
    font-size: 21px;
  }

  .solution-grid {
    right: 52px;
    width: min(48vw, 590px);
    gap: 84px 64px;
  }

  .solution-grid article {
    font-size: 21px;
  }

  .alliance {
    height: 1314px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .alliance-head {
    left: 0;
  }

  .alliance-copy {
    width: min(43vw, 575px);
    font-size: 19px;
    line-height: 1.38;
  }

  .alliance-copy p {
    margin-bottom: 30px;
  }

  .alliance-photos {
    right: 48px;
    width: min(45vw, 600px);
  }

  .alliance-photos > img,
  .alliance-photo-crop,
  .alliance-photo-crop img {
    height: 380px;
  }

  .alliance-band {
    left: 48px;
    right: 48px;
  }

  .equipment {
    height: auto;
    min-height: 0;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 90px;
  }

  .equipment h2 {
    font-size: 60px;
    margin-bottom: 52px;
  }

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

  .equipment-card {
    height: auto;
    min-height: 0;
  }

  .equipment-card h3 {
    gap: 18px;
    flex-wrap: wrap;
  }

  .equipment-card h3 span {
    font-size: 38px;
  }

  .equipment-card h3 small {
    font-size: 24px;
  }

  .after-sales {
    height: auto;
    padding: 0 40px 48px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 44px;
    max-width: 1100px;
    padding-top: 76px;
  }

  .service {
    min-height: 168px;
    font-size: 32px;
    padding: 22px 28px;
    gap: 16px;
  }

  .service > span:not(.service-body) {
    font-size: 64px;
  }

  .service strong {
    font-size: 40px;
  }

  .service-2 { font-size: 24px; }
  .service-2 strong { font-size: 24px; }

  .service-3 {
    width: calc(50% - 22px);
  }

  .contact-form {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --mobile-pad: clamp(20px, 5vw, 28px);
  }

  .page {
    width: 100%;
    margin: 0;
  }

  img,
  table,
  input,
  textarea {
    max-width: 100%;
  }

  .topbar {
    position: relative;
    height: auto;
    min-height: 0;
    width: 100vw;
    max-width: 100vw;
    padding: 18px var(--mobile-pad) 20px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    row-gap: 16px;
  }

  .brand {
    width: min(74%, 240px);
    height: auto;
    justify-self: start;
  }

  .nav {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .topbar.menu-open .nav {
    display: grid;
  }

  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 14px;
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header-icons {
    position: absolute;
    top: 27px;
    right: var(--mobile-pad);
    margin-left: 0;
    gap: 0;
    padding-top: 0;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .hero,
  .about,
  .alliance,
  .equipment,
  .after-sales,
  .contact,
  .footer {
    height: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero {
    min-height: 380px;
    padding: 48px var(--mobile-pad);
    display: flex;
    align-items: center;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(2, 40, 60, .45), rgba(2, 40, 60, .6));
  }

  .hero-copy {
    position: relative;
    inset: auto;
    z-index: 2;
    display: block;
    padding: 0;
    min-width: 0;
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
  }

  .hero-kicker {
    font-size: 38px;
    line-height: 1.05;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 44px;
    line-height: .96;
  }

  .hero-energy {
    margin: 6px 0 28px 74px;
    font-size: 34px;
  }

  .lead {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.65;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .lead br { display: none; }

  .button,
  .contact-form button {
    width: min(100%, 210px);
    height: 54px;
    font-size: 20px;
  }

  .hero .button {
    margin: 28px 0 0;
    width: min(100%, 210px);
    height: 54px;
    font-size: 20px;
    border-radius: 7px;
  }

  .section-label {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: fit-content !important;
    min-width: 0;
    min-height: 54px;
    padding-inline: 22px;
    font-size: 28px;
    height: auto;
  }

  .about,
  .alliance,
  .equipment,
  .after-sales,
  .contact {
    padding: 30px var(--mobile-pad) 54px;
  }

  .about {
    overflow: hidden;
  }

  .about::before {
    right: -90px;
    top: -30px;
    width: 250px;
    height: 250px;
  }

  .outline-about,
  .outline-alliance,
  .outline-equipment,
  .outline-after {
    width: 980px;
    opacity: .06;
  }

  .outline-about {
    left: -38px;
    bottom: -44px;
  }

  .about-text,
  .alliance-copy {
    min-width: 0;
    margin-top: 28px;
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    padding-left: 0;
    font-size: 18px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .about-text strong,
  .about-text em,
  .alliance-copy strong,
  .alliance-copy em {
    overflow-wrap: anywhere;
  }

  .about-text br,
  .alliance-copy br,
  .equipment-card p br {
    display: none;
  }

  .solution-grid,
  .alliance-photos {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
  }

  .solution-grid {
    margin-top: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .solution-grid article {
    min-height: 132px;
    font-size: 18px;
  }

  .solution-icon {
    width: 120px;
    height: 110px;
    margin-bottom: 14px;
  }

  .bars,
  .chain,
  .recycle {
    margin-bottom: 18px;
    transform-origin: center;
  }

  .bars {
    width: 74px;
    height: 62px;
  }

  .bars-tall {
    height: 68px;
  }

  .chain {
    width: 62px;
    height: 44px;
    border-width: 11px;
  }

  .recycle {
    width: 60px;
    height: 60px;
    border-width: 13px;
  }

  .alliance-head {
    position: relative;
    left: auto;
    top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }

  .gh-logo {
    height: 72px;
  }

  .alliance-photos {
    margin-top: 28px;
    gap: 20px;
  }

  .alliance-photos > img,
  .alliance-photo-crop {
    aspect-ratio: 16 / 10;
  }

  .alliance-photos > img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .alliance-photo-crop img {
    width: calc(100% + 24px);
    height: 100%;
    min-height: 100%;
    max-width: none;
    transform: translateX(-2px);
    object-fit: cover;
    object-position: left center;
  }

  .alliance-band {
    display: none;
  }

  .equipment {
    z-index: auto;
    margin-top: 0;
  }

  .equipment h2 {
    margin: 10px 0 28px;
    font-size: 38px;
    line-height: 1.05;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .equipment-card {
    min-width: 0;
    height: auto;
  }

  .equipment-card h3 {
    gap: 14px;
    padding: 12px 18px 13px;
    flex-wrap: wrap;
  }

  .equipment-card h3 span {
    font-size: 34px;
  }

  .equipment-card h3 small {
    font-size: 20px;
  }

  .equipment-card p {
    padding: 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  .equipment-card table {
    font-size: 12px;
    table-layout: fixed;
  }

  .equipment-card th,
  .equipment-card td {
    padding: 8px 10px;
    overflow-wrap: anywhere;
  }

  .after-sales {
    padding: 0 var(--mobile-pad) 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    padding-top: 72px;
    gap: 14px;
  }

  .service {
    width: 100%;
    min-height: 0;
    padding: 20px 22px;
    font-size: 22px;
    line-height: 1.4;
    overflow-wrap: break-word;
  }

  .service > span:not(.service-body) {
    font-size: 44px;
  }

  .service strong {
    font-size: 28px;
  }

  .service-2 { font-size: 22px; }
  .service-2 strong { font-size: 28px; }

  .service-3 {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .service em {
    display: inline;
  }

  .contact-title {
    margin: 24px 0 22px;
    padding: 0;
    text-align: left;
    font-size: 20px;
    line-height: 1.3;
    overflow-wrap: break-word;
  }

  .contact-form {
    height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px 30px;
  }

  .contact-form label {
    font-size: 18px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .message textarea {
    height: 220px;
  }

  .footer {
    padding: 72px var(--mobile-pad) 72px;
  }

  .footer-mark {
    right: -80px;
    top: auto;
    bottom: -30px;
    transform: none;
    width: 280px;
    opacity: .85;
  }

  .social {
    gap: 16px;
    margin-bottom: 34px;
    flex-wrap: wrap;
  }

  .social a {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .footer p {
    font-size: 18px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .footer-line {
    width: min(100%, 300px);
    margin-top: 54px;
  }
}

@media (max-width: 640px) {
  .brand {
    width: min(66%, 210px);
    max-width: none;
    height: auto;
  }

  .nav {
    justify-items: stretch;
    text-align: left;
  }

  .hero-kicker {
    font-size: 34px;
  }

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

  .hero-energy {
    margin-left: 48px;
    font-size: 30px;
  }

  .section-label {
    width: 100% !important;
    justify-content: center;
    font-size: 25px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .solution-grid article {
    min-width: 0;
    min-height: 126px;
    font-size: 16px;
    line-height: 1.08;
  }

  .solution-grid strong {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .alliance-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .equipment h2 {
    font-size: 32px;
  }

  .equipment-card h3 {
    align-items: flex-start;
    flex-direction: column;
  }

  .service {
    font-size: 22px;
  }

  .service strong {
    font-size: 28px;
  }
}
