/* Phase 1: global header/footer and homepage experience. */

.qv-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--qv-z-header);
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: rgb(255 255 255 / 96%);
  color: var(--qv-color-ink);
  backdrop-filter: blur(1.1rem);
  transition: background var(--qv-transition-base), box-shadow var(--qv-transition-base);
}

.admin-bar .qv-header {
  top: 32px;
}

.home .qv-header {
  position: fixed;
  border: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 66%), transparent);
  color: #fff;
}

.home .qv-header.qv-header--compact {
  background: rgb(223 10 20 / 96%);
  box-shadow: 0 1px 0 rgb(255 255 255 / 12%);
  backdrop-filter: blur(1rem);
}

.qv-header__inner {
  position: relative;
  z-index: calc(var(--qv-z-header) + 2);
  display: grid;
  grid-template-columns: minmax(7rem, 10rem) 1fr auto;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: center;
  width: var(--qv-container);
  min-height: var(--qv-header-height);
  margin: 0 auto;
  transition: min-height var(--qv-transition-base);
}

.qv-header--compact .qv-header__inner {
  min-height: var(--qv-header-height-compact);
}

.qv-header__brand-slot {
  min-width: 7rem;
}

.qv-brand {
  display: inline-flex;
  width: min(9.25rem, 100%);
  background: transparent;
}

.qv-brand img {
  width: 100%;
  max-height: 2.5rem;
  object-fit: contain;
  object-position: left center;
}

.qv-brand__light {
  display: none;
}

.home .qv-brand__light,
.qv-navigation-open .qv-brand__light {
  display: block;
}

.home .qv-brand__dark,
.qv-navigation-open .qv-brand__dark {
  display: none;
}

.qv-navigation--desktop {
  position: static;
  display: block;
  padding: 0;
  overflow: visible;
  visibility: visible;
  background: transparent;
  opacity: 1;
  pointer-events: auto;
}

.qv-navigation--desktop .qv-navigation__list {
  display: flex;
  gap: clamp(0.85rem, 1.45vw, 1.65rem);
  align-items: center;
  justify-content: center;
}

body.qv-site .qv-navigation--desktop .qv-navigation__list a,
body.qv-site .qv-navigation--desktop .qv-navigation__list a:visited {
  padding: 0.65rem 0;
  background: transparent !important;
  color: var(--qv-color-ink) !important;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home.qv-site .qv-navigation--desktop .qv-navigation__list a,
.home.qv-site .qv-navigation--desktop .qv-navigation__list a:visited {
  color: #fff !important;
}

body.qv-site .qv-navigation--desktop .qv-navigation__list a:hover,
body.qv-site .qv-navigation--desktop .qv-navigation__list a:focus,
body.qv-site .qv-navigation--desktop .qv-navigation__list a:active {
  color: var(--qv-color-brand) !important;
}

.home.qv-site .qv-navigation--desktop .qv-navigation__list a:hover,
.home.qv-site .qv-navigation--desktop .qv-navigation__list a:focus,
.home.qv-site .qv-navigation--desktop .qv-navigation__list a:active {
  color: #fff !important;
}

.qv-navigation--desktop a::after {
  right: 0;
  bottom: 0.35rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--qv-color-brand) !important;
}

.qv-header__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
}

.qv-language {
  position: relative;
}

.qv-language summary {
  display: grid;
  min-width: 2.75rem;
  min-height: 2.75rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  list-style: none;
  cursor: pointer;
}

.qv-language summary::-webkit-details-marker {
  display: none;
}

.qv-language ul {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: 13rem;
  max-height: 60vh;
  padding: 0.75rem;
  margin: 0;
  overflow-y: auto;
  border: 1px solid rgb(16 24 32 / 10%);
  background: #fff;
  box-shadow: var(--qv-shadow-card);
  list-style: none;
}

.qv-language a {
  display: block;
  padding: 0.65rem 0.75rem;
  color: var(--qv-color-ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.qv-language a[aria-current="page"],
.qv-language a:hover,
.qv-language a:focus-visible {
  background: var(--qv-color-accent-soft);
  color: var(--qv-color-accent-dark);
}

.qv-button {
  border-color: var(--qv-color-brand);
  background: var(--qv-color-brand);
}

.qv-button:hover,
.qv-button:focus-visible {
  border-color: var(--qv-color-brand-dark);
  background: var(--qv-color-brand-dark);
}

.qv-button--light,
.qv-button--light:visited {
  border-color: #fff;
  background: #fff;
  color: var(--qv-color-ink);
}

.qv-button--light:hover,
.qv-button--light:focus-visible {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.qv-button--header {
  min-height: 2.75rem;
  padding-inline: 1rem;
  white-space: nowrap;
}

.home .qv-header .qv-button--header,
.home .qv-header .qv-button--header:visited {
  border-color: #fff;
  background: #fff;
  color: var(--qv-color-ink);
}

.home .qv-header .qv-button--header:hover,
.home .qv-header .qv-button--header:focus-visible {
  border-color: var(--qv-color-brand);
  background: var(--qv-color-brand);
  color: #fff;
}

.qv-nav-toggle,
.qv-navigation--mobile {
  display: none;
}

body:not(.home) main {
  padding-top: var(--qv-header-height);
}

.qv-home {
  padding-top: 0;
  overflow: clip;
}

.qv-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  background: var(--qv-color-night);
  color: #fff;
}

.qv-hero__media,
.qv-hero__shade {
  position: absolute;
  inset: 0;
}

.qv-hero__media {
  transform: translate3d(0, var(--qv-parallax-y, 0), 0) scale(1.04);
  will-change: transform;
}

.qv-hero__media video,
.qv-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qv-hero__shade {
  background: linear-gradient(90deg, rgb(0 0 0 / 76%) 0%, rgb(0 0 0 / 32%) 56%, rgb(0 0 0 / 18%) 100%), linear-gradient(0deg, rgb(0 0 0 / 62%) 0%, transparent 54%);
}

.qv-hero__content {
  position: relative;
  z-index: 2;
  width: var(--qv-container);
  padding: clamp(9rem, 18vh, 13rem) 0 clamp(6.5rem, 11vh, 9rem);
  margin: 0 auto;
}

.qv-kicker {
  margin: 0 0 1rem;
  color: var(--qv-color-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.qv-dark .qv-kicker,
.qv-hero .qv-kicker,
.qv-iaevo .qv-kicker {
  color: #fff;
}

.qv-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 7.4vw, 8.4rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-wrap: balance;
}

.qv-hero__intro {
  max-width: 43rem;
  margin: 1.75rem 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.qv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2rem;
}

.qv-button--ghost {
  border-color: rgb(255 255 255 / 70%);
  background: transparent;
  color: #fff;
}

.qv-button--ghost:visited {
  color: #fff;
}

.qv-button--ghost:hover,
.qv-button--ghost:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--qv-color-ink);
}

.qv-hero__control {
  z-index: 3;
}

.qv-hero__scroll {
  z-index: 3;
}

.qv-home-section {
  padding: clamp(5.5rem, 10vw, 10rem) max(1rem, calc((100vw - 92rem) / 2));
}

.qv-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.qv-section-heading .qv-kicker {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.qv-section-heading h2,
.qv-process-story h2,
.qv-credibility h2,
.qv-lead h2,
.qv-footer h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 6.4rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-wrap: balance;
}

.qv-section-heading > p:last-child {
  max-width: 34rem;
  margin: 0;
  color: var(--qv-color-steel-700);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.qv-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--qv-color-steel-300);
}

.qv-product-card {
  position: relative;
  display: block;
  min-height: clamp(24rem, 34vw, 38rem);
  overflow: hidden;
  background: var(--qv-color-night);
  color: #fff;
  text-decoration: none;
}

.qv-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.qv-product-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 82%), transparent 62%);
}

.qv-product-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.qv-product-card__content strong {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(1.75rem, 2.8vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.qv-product-card__content > span {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 35%);
  color: rgb(255 255 255 / 84%);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qv-product-card:hover img,
.qv-product-card:focus-visible img,
.qv-family-card:hover img,
.qv-family-card:focus-visible img {
  transform: scale(1.045);
}

.qv-dark {
  background: var(--qv-color-night);
  color: #fff;
}

.qv-dark h2,
.qv-dark h3 {
  color: #fff;
}

.qv-journeys__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 18%);
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.qv-journey {
  display: grid;
  min-height: 32rem;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  border-right: 1px solid rgb(255 255 255 / 18%);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  align-content: space-between;
  transition: background var(--qv-transition-base);
}

.qv-journey:hover {
  background: rgb(255 255 255 / 6%);
}

.qv-journey > span {
  color: #66c28d;
  font-size: 0.75rem;
  font-weight: 900;
}

.qv-journey h3 {
  max-width: 9ch;
  margin: auto 0 1.25rem;
  font-size: clamp(2.2rem, 3.5vw, 4.25rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.qv-journey p {
  color: rgb(255 255 255 / 68%);
}

.qv-journey a,
.qv-journey a:visited {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.qv-iaevo {
  position: relative;
  display: grid;
  min-height: min(56rem, 92svh);
  align-items: end;
  overflow: hidden;
  background: var(--qv-color-night);
  color: #fff;
}

.qv-iaevo__media,
.qv-iaevo__shade {
  position: absolute;
  inset: 0;
}

.qv-iaevo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qv-iaevo__shade {
  background: linear-gradient(90deg, rgb(55 0 4 / 88%), rgb(91 11 16 / 24%)), linear-gradient(0deg, rgb(43 0 3 / 66%), transparent);
}

.qv-iaevo__content {
  position: relative;
  z-index: 2;
  width: var(--qv-container);
  padding: clamp(5rem, 10vw, 10rem) 0;
  margin: 0 auto;
}

.qv-iaevo h2 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6.5vw, 7rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.qv-iaevo p:not(.qv-kicker) {
  max-width: 40rem;
  color: rgb(255 255 255 / 76%);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.qv-process-story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.qv-process-story__intro {
  position: sticky;
  top: calc(var(--qv-header-height-compact) + 4rem);
  height: fit-content;
}

.qv-process-story__intro > p:not(.qv-kicker) {
  color: var(--qv-color-steel-700);
}

.qv-text-action,
.qv-text-action:visited {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}

.qv-process-story__steps {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--qv-color-steel-300);
  list-style: none;
}

.qv-process-story__steps li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--qv-color-steel-300);
}

.qv-process-story__steps li > span {
  color: var(--qv-color-accent);
  font-size: 0.75rem;
  font-weight: 900;
}

.qv-process-story h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.qv-process-story__steps p {
  max-width: 36rem;
  color: var(--qv-color-steel-700);
}

.qv-steel {
  background: var(--qv-color-steel-100);
}

.qv-machine-families__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.qv-family-card {
  display: grid;
  grid-template-columns: minmax(11rem, 0.8fr) minmax(0, 1.2fr);
  min-height: 22rem;
  overflow: hidden;
  background: #fff;
  color: var(--qv-color-ink);
  text-decoration: none;
  transition: box-shadow var(--qv-transition-base), transform var(--qv-transition-base);
}

.qv-family-card:hover,
.qv-family-card:focus-visible {
  color: var(--qv-color-ink);
  box-shadow: var(--qv-shadow-card);
  transform: translateY(-0.25rem);
}

.qv-family-card__media {
  overflow: hidden;
  background: #e5ebee;
}

.qv-family-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.qv-family-card__copy {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  align-content: center;
}

.qv-family-card strong {
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.qv-family-card small {
  color: var(--qv-color-steel-700);
  font-size: 0.95rem;
}

.qv-family-card b {
  color: var(--qv-color-brand-dark);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.qv-family-card i {
  font-style: normal;
}

.qv-credibility {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.75fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.qv-credibility__headline {
  align-self: center;
}

.qv-credibility__list {
  padding: 0;
  margin: 0;
  border-top: 1px solid rgb(255 255 255 / 20%);
  list-style: none;
}

.qv-credibility__list li {
  display: grid;
  grid-template-columns: minmax(7rem, 0.65fr) 1.35fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.qv-credibility__list strong {
  color: #fff;
}

.qv-credibility__list span {
  color: rgb(255 255 255 / 72%);
}

.qv-services-home__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 2.5rem;
  background: var(--qv-color-steel-300);
}

.qv-services-home article {
  min-height: 20rem;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  background: #fff;
}

.qv-services-home article > span {
  color: var(--qv-color-accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.qv-services-home h3 {
  margin: 5rem 0 1rem;
  font-size: clamp(1.65rem, 2.6vw, 2.8rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.qv-services-home article p {
  color: var(--qv-color-steel-700);
}

.qv-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(4rem, 10vw, 10rem);
  padding: clamp(5.5rem, 10vw, 10rem) max(1rem, calc((100vw - 92rem) / 2));
  background: linear-gradient(135deg, var(--qv-color-brand-soft), var(--qv-color-canvas) 72%);
}

.qv-lead__intro {
  align-self: start;
}

.qv-lead__intro > p:last-child {
  max-width: 34rem;
  color: var(--qv-color-steel-700);
}

.qv-lead__form-wrap {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: #fff;
  box-shadow: var(--qv-shadow-card);
}

.qv-lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.qv-lead-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--qv-color-ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.qv-lead-form input,
.qv-lead-form select,
.qv-lead-form textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid var(--qv-color-steel-300);
  border-radius: 0;
  background: transparent;
  color: var(--qv-color-ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
}

.qv-lead-form textarea {
  resize: vertical;
}

.qv-lead-form input:focus,
.qv-lead-form select:focus,
.qv-lead-form textarea:focus {
  border-bottom-color: var(--qv-color-brand);
  outline: 0;
}

.qv-lead-form__wide {
  grid-column: 1 / -1;
}

.qv-lead-form__privacy {
  display: flex !important;
  gap: 0.75rem !important;
  align-items: flex-start;
  font-weight: 500 !important;
}

.qv-lead-form__privacy input {
  width: 1.15rem;
  min-height: 0;
  height: 1.15rem;
  margin-top: 0.1rem;
}

.qv-lead-form__submit {
  margin-top: 1rem;
}

.qv-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.qv-form-status {
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.qv-form-status--success {
  background: var(--qv-color-accent-soft);
  color: var(--qv-color-accent-dark);
}

.qv-form-status--error {
  background: #fde7e7;
  color: #821319;
}

.qv-footer {
  padding: 0;
  background: linear-gradient(135deg, #eef1f2 0%, var(--qv-color-inox) 48%, #e7ebec 100%);
  color: rgb(16 24 32 / 78%);
}

.qv-footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: 4rem;
  align-items: end;
  padding: clamp(5rem, 9vw, 9rem) max(1rem, calc((100vw - 92rem) / 2));
  border-bottom: 1px solid rgb(16 24 32 / 18%);
}

.qv-footer h2 {
  max-width: 14ch;
  color: var(--qv-color-ink);
}

.qv-footer .qv-kicker {
  color: var(--qv-color-ink);
}

.qv-footer__cta .qv-actions {
  justify-content: flex-end;
}

.qv-footer__cta .qv-text-action,
.qv-footer__cta .qv-text-action:visited {
  color: var(--qv-color-ink);
}

.qv-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.8fr) 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  width: 100%;
  max-width: none;
  padding: clamp(4rem, 7vw, 7rem) max(1rem, calc((100vw - 92rem) / 2));
  margin: 0;
}

.qv-footer__brand img {
  width: min(10rem, 100%);
  margin-bottom: 1.5rem;
  filter: brightness(0);
}

.qv-footer__brand p {
  max-width: 18rem;
}

.qv-footer h3 {
  margin: 0 0 1.25rem;
  color: var(--qv-color-ink);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qv-footer ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.qv-footer a,
.qv-footer a:visited {
  color: rgb(16 24 32 / 76%);
  text-decoration: none;
}

.qv-footer a:hover,
.qv-footer a:focus-visible {
  color: var(--qv-color-brand-dark);
}

.qv-footer .qv-button--light,
.qv-footer .qv-button--light:visited {
  border-color: var(--qv-color-ink);
  background: var(--qv-color-ink);
  color: #fff;
}

.qv-footer .qv-button--light:hover,
.qv-footer .qv-button--light:focus-visible {
  color: #fff;
}

.qv-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.qv-footer address {
  color: inherit;
  font-style: normal;
}

.qv-footer__bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 1.5rem max(1rem, calc((100vw - 92rem) / 2));
  margin: 0;
  border-top: 1px solid rgb(16 24 32 / 18%);
  color: rgb(16 24 32 / 58%);
  font-size: 0.72rem;
}

.qv-footer__credit {
  grid-column: 2;
  letter-spacing: 0.04em;
  text-align: center;
}

.qv-js [data-qv-reveal],
.qv-js [data-qv-image-reveal] {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.qv-js [data-qv-image-reveal] {
  transform: scale(1.04);
}

.qv-js [data-qv-reveal].is-visible,
.qv-js [data-qv-image-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 82rem) {
  .qv-header__inner {
    grid-template-columns: 1fr auto;
  }

  .qv-navigation--desktop,
  .qv-button--header {
    display: none;
  }

  .qv-nav-toggle {
    display: grid;
  }

  .qv-navigation--mobile {
    position: fixed;
    inset: 0;
    z-index: var(--qv-z-menu);
    display: grid;
    grid-template-rows: 1fr auto;
    padding: calc(var(--qv-header-height) + 2rem) max(1.25rem, calc((100vw - 74rem) / 2)) 2rem;
    overflow-y: auto;
    visibility: hidden;
    background: var(--qv-color-night);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--qv-transition-base), visibility var(--qv-transition-base);
  }

  .qv-navigation--mobile[data-open],
  .qv-navigation-open .qv-navigation--mobile {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .qv-navigation--mobile .qv-navigation__list {
    display: grid;
    gap: 0.2rem;
    align-content: center;
  }

  body.qv-site .qv-navigation--mobile .qv-navigation__list a,
  body.qv-site .qv-navigation--mobile .qv-navigation__list a:visited,
  body.qv-site .qv-navigation--mobile .qv-navigation__list a:hover,
  body.qv-site .qv-navigation--mobile .qv-navigation__list a:focus,
  body.qv-site .qv-navigation--mobile .qv-navigation__list a:active {
    display: inline-block;
    padding: 0.18em 0;
    color: #fff !important;
    font-size: clamp(2.35rem, 8vw, 5.4rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.95;
    text-transform: none;
  }

  .qv-navigation--mobile .qv-navigation__mobile-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgb(255 255 255 / 18%);
  }

  .qv-navigation--mobile .qv-navigation__mobile-footer > a:not(.qv-button) {
    color: #fff;
    font-weight: 800;
  }

  .qv-navigation-open .qv-header {
    background: var(--qv-color-night);
    color: #fff;
  }

  .qv-products__grid,
  .qv-services-home__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qv-machine-families__grid {
    grid-template-columns: 1fr;
  }

  .qv-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 64rem) {
  .qv-section-heading,
  .qv-process-story,
  .qv-credibility,
  .qv-lead,
  .qv-footer__cta {
    grid-template-columns: 1fr;
  }

  .qv-process-story__intro {
    position: static;
  }

  .qv-journeys__grid {
    grid-template-columns: 1fr;
  }

  .qv-journey {
    min-height: 24rem;
  }

  .qv-footer__cta .qv-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 48rem) {
  :root {
    --qv-header-height: 4.75rem;
    --qv-header-height-compact: 4.25rem;
  }

  .admin-bar .qv-header {
    top: 46px;
  }

  .qv-header__inner {
    width: calc(100% - 2rem);
  }

  .qv-header__brand-slot {
    min-width: 0;
  }

  .qv-language {
    display: none;
  }

  .qv-hero__media video {
    display: none;
  }

  .qv-hero__media {
    background: #0b1114 url("../images/hero-machinery.webp") center / cover no-repeat;
    transform: none;
  }

  .qv-hero__shade {
    background: linear-gradient(0deg, rgb(0 0 0 / 82%), rgb(0 0 0 / 24%) 74%, rgb(0 0 0 / 48%));
  }

  .qv-hero h1 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .qv-hero__content {
    width: calc(100% - 2rem);
    padding-bottom: 7rem;
  }

  .qv-hero__control {
    display: none;
  }

  .qv-products__grid,
  .qv-services-home__grid,
  .qv-footer__grid,
  .qv-lead-form {
    grid-template-columns: 1fr;
  }

  .qv-product-card {
    min-height: 30rem;
  }

  .qv-family-card {
    grid-template-columns: 1fr;
  }

  .qv-family-card__media {
    min-height: 18rem;
  }

  .qv-process-story__steps li {
    grid-template-columns: 2.5rem 1fr;
  }

  .qv-footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qv-footer__credit {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qv-js [data-qv-reveal],
  .qv-js [data-qv-image-reveal] {
    opacity: 1;
    transform: none;
  }

  .qv-hero__media {
    transform: none;
  }
}
