:root {
  --red: #c0143c;
  --orange: #ff6f40;
  --navy: #35404d;
  --ink: #26313c;
  --paper: #fbfaf8;
  --mist: #e9efee;
  --soft: #f5eee9;
  --line: rgba(53, 64, 77, 0.14);
  --white: #fff;
  --radius: 20px;
  --radius-lg: 34px;
  --shadow: 0 25px 60px rgba(28, 43, 52, 0.13);
}
/* Lightweight feedback when the visitor changes language. */
.language-swap {
  animation: language-swap 0.24s cubic-bezier(0.2, 0.72, 0.25, 1) both;
}
@keyframes language-swap {
  0% {
    opacity: 0.18;
    transform: translateY(4px);
    filter: blur(1.5px);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
.button__label.language-swap {
  animation: language-swap-button 0.24s cubic-bezier(0.2, 0.72, 0.25, 1) both;
}
@keyframes language-swap-button {
  0% {
    opacity: 0.18;
    transform: skewX(25deg) translateY(4px);
    filter: blur(1.5px);
  }
  100% {
    opacity: 1;
    transform: skewX(25deg);
    filter: none;
  }
}
/* Header: constrained desktop bar with the requested 90px height. */
.header {
  width: min(1220px, calc(100% - 56px)) !important;
  height: 90px !important;
  top: 12px !important;
  margin: 0 auto;
  border: 1px solid rgba(53, 64, 77, 0.1) !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 28px rgba(37, 50, 59, 0.07);
  padding-inline: clamp(16px, 3vw, 36px);
}
.header .container {
  width: 100% !important;
}
.header__content {
  height: 100% !important;
}
.brand img {
  width: 110px !important;
  max-height: 68px !important;
}
.nav.open {
  top: 89px !important;
  border-radius: 0 0 18px 18px !important;
}
.hero {
  margin-top: 24px;
}
/* The bar floats over the initial hero instead of taking up page space. */
.header {
  position: absolute !important;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.92) !important;
}
.hero {
  margin-top: 0 !important;
  padding-top: 1px;
}
.hero__grid {
  padding-top: 150px !important;
}
@media (max-width: 700px) {
  .menu-toggle {
    font-size: 0;
    gap: 0;
  }
  .header {
    width: calc(100% - 30px) !important;
    height: 90px !important;
    top: 7px !important;
    padding-inline: 16px;
  }
  .brand img {
    width: 104px !important;
    max-height: 65px !important;
  }
  .nav.open {
    top: 89px !important;
  }
  .hero {
    margin-top: 14px;
  }
  .hero__grid {
    padding-top: 132px !important;
  }
}
/* Section 07 — interactive project journey */
.section--process {
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 111, 64, 0.24),
      transparent 25%
    ),
    linear-gradient(135deg, #273440, #35404d 58%, #2b3742) !important;
}
.section--process .container {
  position: relative;
}
.section--process .container:after {
  content: "";
  position: absolute;
  right: -32px;
  top: 22px;
  width: min(430px, 45vw);
  height: 210px;
  background: url("Logo%20MVK.svg") center / contain no-repeat;
  filter: grayscale(1) brightness(2.8) contrast(0.45);
  opacity: 0.09;
  pointer-events: none;
}
.process-intro {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 19px 0 -8px;
  color: #c9d5d5;
  font-size: 17px;
}
.timeline {
  position: relative;
  z-index: 1;
  gap: 9px !important;
  padding: 26px 0 0;
}
.timeline:before {
  content: "";
  position: absolute;
  top: 25px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 255, 255, 0.15));
}
.timeline article {
  position: relative;
  z-index: 1;
  min-height: 170px !important;
  border: 0 !important;
  border-radius: 16px !important;
  padding: 23px 17px !important;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s !important;
}
.timeline article:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 18px;
  width: 16px;
  height: 16px;
  border: 3px solid #35404d;
  border-radius: 50%;
  background: #91a0a2;
  transition: 0.25s;
}
.timeline article:hover {
  background: rgba(255, 111, 64, 0.13) !important;
  /* transform: translateY(-5px); */
}
.timeline article:hover:before,
.timeline article.active:before {
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 111, 64, 0.2);
}
.timeline article.active {
  background: linear-gradient(
    150deg,
    rgba(255, 111, 64, 0.25),
    rgba(255, 255, 255, 0.08)
  ) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 177, 148, 0.35),
    0 15px 30px rgba(0, 0, 0, 0.17);
  /* transform: translateY(-6px); */
}
.timeline article:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}
.timeline article b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 25px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffb69e !important;
  font-size: 11px !important;
}
.timeline article.active b {
  background: var(--orange);
  color: #fff !important;
}
.timeline article h3 {
  margin-top: 24px !important;
}
.timeline article.active h3 {
  color: #fff;
}
.process-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 78px 1fr 28px;
  align-items: center;
  gap: 23px;
  min-height: 110px;
  margin-top: 24px;
  padding: 20px 23px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: rgba(16, 27, 35, 0.32);
  backdrop-filter: blur(9px);
}
.process-detail > span:first-child {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font:
    800 17px "Be Vietnam Pro",
    sans-serif;
}
.process-detail p {
  margin: 0;
  color: #e5eceb;
  font-size: 17px;
  line-height: 1.45;
}
.process-arrow {
  color: var(--orange);
  font-size: 26px;
}
.section--process .timeline + .process-detail {
  transition:
    transform 0.25s,
    background 0.25s;
}
.section--process .timeline:has(article.active) + .process-detail {
  background: rgba(16, 27, 35, 0.48);
}
@media (max-width: 1050px) {
  .timeline:before {
    display: none;
  }
  .timeline article:before {
    top: 10px;
    left: auto;
    right: 11px;
  }
  .timeline {
    padding-top: 12px !important;
  }
}
@media (max-width: 700px) {
  .process-intro {
    font-size: 16px;
  }
  .timeline article {
    min-height: 145px !important;
  }
  .timeline article h3 {
    margin-top: 17px !important;
    font-size: 18px !important;
  }
  .process-detail {
    grid-template-columns: 55px 1fr;
    gap: 14px;
    padding: 16px;
  }
  .process-detail > span:first-child {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }
  .process-detail p {
    font-size: 15px;
  }
  .process-arrow {
    display: none;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    400 17px/1.55 "Fira Sans",
    sans-serif;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1220px, calc(100% - 56px));
  margin: auto;
}
.header {
  height: 144px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 248, 0.9);
  border-bottom: 1px solid rgba(53, 64, 77, 0.1);
  backdrop-filter: blur(18px);
}
.header__content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: 144px;
  max-height: 108px;
  object-fit: contain;
}
.brand span {
  padding-left: 16px;
  border-left: 1px solid var(--line);
  font:
    600 10px Inter,
    sans-serif;
  letter-spacing: 0.2em;
  color: var(--navy);
}
.nav {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.nav a {
  position: relative;
  padding: 12px 10px;
  text-decoration: none;
  color: var(--navy);
  font:
    600 12px Inter,
    sans-serif;
  letter-spacing: 0.02em;
}
.nav a:after {
  content: "";
  height: 2px;
  position: absolute;
  right: 10px;
  bottom: 7px;
  left: 10px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav a:hover:after {
  transform: scaleX(1);
}
.header__actions {
  display: flex;
  gap: 13px;
  align-items: center;
}
.language {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.language button {
  border: 0;
  border-radius: 999px;
  padding: 7px 8px;
  background: none;
  color: var(--navy);
  font:
    700 10px Inter,
    sans-serif;
  cursor: pointer;
}
.language button.active {
  background: var(--navy);
  color: #fff;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 12px 17px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font:
    700 11px Inter,
    sans-serif;
  box-shadow: 0 10px 22px rgba(255, 111, 64, 0.25);
  transition: 0.25s;
  transform: skewX(-25deg);
}
.header__cta:hover {
  background: var(--red);
  transform: translateY(-2px) skewX(-25deg);
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.hero:before {
  content: "";
  position: absolute;
  inset: auto -100px -220px auto;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.035),
    0 0 0 140px rgba(255, 255, 255, 0.02);
}
.hero:after {
  content: "";
  position: absolute;
  left: 48%;
  bottom: 0;
  width: 40vw;
  height: 6px;
  background: var(--orange);
}
.texture {
  pointer-events: none;
  position: absolute;
  opacity: 0.25;
  filter: invert(46%) sepia(84%) saturate(1023%) hue-rotate(326deg)
    brightness(103%);
}
.texture--hero {
  width: 450px;
  right: 33%;
  top: -170px;
  transform: rotate(17deg);
}
.hero__grid {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 70px;
  padding: 70px 0;
  position: relative;
  z-index: 1;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font:
    700 11px/1 Inter,
    sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow--light {
  color: #ffb59e;
}
.hero h1,
h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  letter-spacing: -0.06em;
  line-height: 1.02;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(50px, 5.75vw, 82px);
}
.hero h1 em,
h2 em {
  color: var(--orange);
  font-style: normal;
}
.hero__lead {
  max-width: 540px;
  margin: 27px 0 0;
  color: #dce5e4;
  font-size: 20px;
  line-height: 1.5;
}
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 8px;
  padding: 13px 20px;
  cursor: pointer;
  text-decoration: none;
  font:
    700 12px Inter,
    sans-serif;
  letter-spacing: 0.01em;
  transition: 0.25s;
  transform: skewX(-25deg);
}
.button__label,
.button__arrow {
  display: inline-block;
  transform: skewX(25deg);
}
.button__arrow {
  font-size: 18px;
}
.button--orange {
  background: linear-gradient(135deg, #ff8b64, var(--orange));
  color: #fff;
  box-shadow: 0 12px 25px rgba(255, 111, 64, 0.28);
}
.button--orange:hover {
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 16px 32px rgba(255, 111, 64, 0.4);
  transform: translateY(-3px) skewX(-25deg);
}
.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
}
.button--ghost:hover {
  background: #fff;
  color: var(--navy);
}
.image-placeholder {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px dashed rgba(53, 64, 77, 0.45);
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(145deg, #f5f2ed, #dce8e5);
  color: var(--navy);
}
.image-placeholder:before {
  content: "";
  position: absolute;
  right: -56px;
  top: -70px;
  width: 190px;
  height: 190px;
  border: 30px solid rgba(192, 20, 60, 0.12);
  border-radius: 50%;
}
.image-placeholder__tag {
  position: relative;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font:
    700 10px Inter,
    sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.image-placeholder p {
  max-width: 280px;
  position: relative;
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.35;
}
.hero-carousel {
  position: relative;
  min-height: 440px;
  isolation: isolate;
}
.hero-carousel:before {
  content: "";
  position: absolute;
  inset: 30px 0 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  transform: rotate(4deg);
}
.hero-carousel__card {
  position: absolute;
  inset: 0 24px 28px 0;
  z-index: 1;
  display: flex;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-lg);
  background: #f1f3f1;
  box-shadow: 0 23px 45px rgba(13, 22, 28, 0.26);
  transition:
    transform 0.65s cubic-bezier(0.2, 0.78, 0.22, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
}
.hero-carousel__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.hero-carousel__card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 19px;
  background: linear-gradient(transparent, rgba(25, 35, 42, 0.79));
  color: #fff;
}
.hero-carousel__card figcaption span {
  font:
    700 11px Inter,
    sans-serif;
  color: #ffb69e;
}
.hero-carousel__card figcaption p {
  margin: 0;
  font:
    600 13px Inter,
    sans-serif;
}
.hero-carousel__card.active {
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: translate(0) scale(1);
}
.hero-carousel__card.is-next {
  z-index: 3;
  opacity: 0.72;
  filter: saturate(0.72);
  transform: translate(22px, 18px) scale(0.95);
}
.hero-carousel__card.is-back {
  z-index: 2;
  opacity: 0.42;
  filter: saturate(0.45);
  transform: translate(44px, 35px) scale(0.89);
}
.hero-carousel__controls {
  position: absolute;
  z-index: 8;
  right: 16px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-carousel__controls > button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(53, 64, 77, 0.72);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: 0.2s;
}
.hero-carousel__controls > button:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.hero-carousel__dots {
  display: flex;
  gap: 5px;
  padding: 0 7px;
}
.hero-carousel__dots button {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 99px;
  padding: 0;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: 0.25s;
}
.hero-carousel__dots button.active {
  width: 22px;
  background: var(--orange);
}
@media (max-width: 700px) {
  .hero-carousel {
    min-height: 290px;
  }
  .hero-carousel:before {
    inset: 20px 0 0 19px;
  }
  .hero-carousel__card {
    inset: 0 15px 22px 0;
    border-radius: 22px;
  }
  .hero-carousel__card.is-next {
    transform: translate(14px, 13px) scale(0.95);
  }
  .hero-carousel__card.is-back {
    transform: translate(26px, 25px) scale(0.89);
  }
  .hero-carousel__controls {
    right: 7px;
    bottom: 32px;
  }
  .hero-carousel__card figcaption {
    padding: 12px 15px;
  }
}
.hero__visual {
  min-height: 440px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 111, 64, 0.97), rgba(192, 20, 60, 0.88)),
    linear-gradient(135deg, #88a8a8, #35404d);
  box-shadow: 18px 20px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
}
.hero__visual .image-placeholder__tag {
  background: rgba(255, 255, 255, 0.18);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  border-radius: 20px;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.metrics div {
  min-height: 118px;
  padding: 25px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  transition: 0.25s;
}
.metrics div:first-child {
  border-radius: 20px 0 0 0;
}
.metrics div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0 20px 0 0;
}
.metrics strong {
  display: block;
  color: #fff0eb;
  font:
    800 clamp(24px, 2.4vw, 34px)/1 "Be Vietnam Pro",
    sans-serif;
}
.metrics span {
  display: block;
  margin-top: 8px;
  color: #cbd5d5;
  font-size: 13px;
  line-height: 1.3;
}
.section {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 75px;
  align-items: end;
}
.section h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(39px, 4.6vw, 65px);
}
.section-heading > p,
.section-copy {
  max-width: 460px;
  margin: 0;
  color: #62717a;
  font-size: 19px;
  line-height: 1.55;
}
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 50px;
}
.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.product-card:hover {
  border-color: rgba(255, 111, 64, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}
.product-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
.product-card--accent {
  border-color: #ffc4ae;
  background: linear-gradient(170deg, #fff9f6, #fff);
}
.product-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 17px;
}
.product-card__top span {
  color: var(--red);
  font:
    700 12px Inter,
    sans-serif;
}
.product-card h3 {
  margin: 0;
  font:
    700 20px/1.1 "Be Vietnam Pro",
    sans-serif;
  letter-spacing: -0.05em;
}
.product-card .image-placeholder {
  min-height: 175px;
  transition: transform 0.3s;
}
.product-card .product-card__image {
  padding: 0;
  border-style: solid;
  background: #fff;
}
.product-card .product-card__image:before {
  display: none;
}
.product-card .product-card__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.product-card--floor .product-card__image {
  min-height: 215px;
}
.product-card:hover .image-placeholder {
  transform: scale(0.975);
}
.product-card > p {
  margin: 17px 3px 3px;
  color: #607078;
  font-size: 14px;
  line-height: 1.5;
}
.product-card.gallery-active {
  border-color: var(--orange);
  box-shadow: 0 15px 30px rgba(255, 111, 64, 0.2);
}
.product-gallery-panel {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  transition:
    grid-template-rows 0.5s cubic-bezier(0.22, 0.75, 0.26, 1),
    margin-top 0.5s cubic-bezier(0.22, 0.75, 0.26, 1);
}
.product-gallery-panel.open {
  grid-template-rows: 1fr;
  margin-top: 28px;
}
.product-gallery-panel__inner {
  min-height: 0;
  overflow: hidden;
}
.product-gallery-panel__content {
  opacity: 0;
  transform: translateY(-14px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: linear-gradient(135deg, #fff, #fff8f5);
  transition:
    opacity 0.3s ease 0.15s,
    transform 0.42s cubic-bezier(0.22, 0.75, 0.26, 1) 0.1s;
}
.product-gallery-panel.open .product-gallery-panel__content {
  opacity: 1;
  transform: none;
}
.product-gallery-panel__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}
.product-gallery-panel__heading .eyebrow {
  margin-bottom: 10px;
}
.product-gallery-panel__heading h3 {
  margin: 0;
  font:
    700 clamp(28px, 3vw, 42px)/1.05 "Be Vietnam Pro",
    sans-serif;
  letter-spacing: -0.055em;
}
.product-gallery-panel__heading p:not(.eyebrow) {
  margin: 10px 0 0;
  color: #65727a;
  font-size: 15px;
}
.product-gallery-panel__close {
  display: grid;
  place-items: center;
  flex: none;
  width: 39px;
  height: 39px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font:
    400 28px/1 Arial,
    sans-serif;
  cursor: pointer;
  transition: 0.2s;
}
.product-gallery-panel__close:hover {
  background: var(--red);
  transform: rotate(90deg);
}
.gallery-modal,
.lightbox {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}
.gallery-modal[hidden],
.lightbox[hidden] {
  display: none;
}
.gallery-modal__backdrop,
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 38, 46, 0.72);
  backdrop-filter: blur(7px);
  animation: modal-backdrop 0.25s ease both;
}
.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1300px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  border-radius: 28px;
  padding: 42px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
  animation: modal-enter 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.gallery-modal__dialog h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
}
.gallery-modal__hint {
  margin: 9px 0 28px;
  color: #65727a;
}
.gallery-modal__close,
.lightbox__close {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font:
    400 30px/1 Arial,
    sans-serif;
  cursor: pointer;
  transition: 0.2s;
}
.gallery-modal__close {
  top: 18px;
  right: 18px;
}
.gallery-modal__close:hover,
.lightbox__close:hover {
  background: var(--red);
  transform: rotate(90deg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.gallery-grid__item {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border: 0;
  border-radius: 15px;
  padding: 0;
  background: #f3f4f2;
  cursor: zoom-in;
}
.gallery-grid__item:after {
  content: "+";
  position: absolute;
  right: 11px;
  bottom: 9px;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--red);
  font: 600 23px/1 Arial;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.35s;
}
.gallery-grid__item:hover img {
  transform: scale(1.08);
}
.lightbox {
  z-index: 70;
}
.lightbox__backdrop {
  background: rgba(25, 35, 42, 0.86);
  backdrop-filter: blur(8px);
}
.lightbox__content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  max-width: min(1100px, 94vw);
  max-height: 90vh;
  margin: 0;
  padding: 14px;
  background: #fff;
  animation: modal-enter 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.lightbox__content img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.26);
}
.lightbox__close {
  top: -15px;
  right: -15px;
  background: var(--red);
}
.lightbox__content figcaption {
  margin-top: 12px;
  color: var(--navy);
  font:
    700 13px Inter,
    sans-serif;
  text-align: center;
}
@keyframes modal-enter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes modal-backdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 1050px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .gallery-modal,
  .lightbox {
    padding: 14px;
  }
  .gallery-modal__dialog {
    max-height: calc(100vh - 28px);
    border-radius: 20px;
    padding: 50px 18px 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .gallery-grid__item {
    min-height: 145px;
  }
  .product-gallery-panel.open {
    margin-top: 20px;
  }
  .product-gallery-panel__content {
    padding: 22px 16px;
  }
  .product-gallery-panel__heading {
    gap: 13px;
    margin-bottom: 19px;
  }
  .product-gallery-panel__heading h3 {
    font-size: 29px;
  }
  .lightbox__content img {
    max-height: 75vh;
  }
  .lightbox__close {
    top: -10px;
    right: -8px;
  }
}
.section--dark {
  background: var(--navy);
  color: #fff;
}
.section--dark:after {
  content: "";
  position: absolute;
  right: -145px;
  bottom: -150px;
  width: 400px;
  height: 400px;
  border: 60px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.texture--custom {
  width: 380px;
  left: -110px;
  bottom: -160px;
  filter: invert(70%) sepia(84%) saturate(477%) hue-rotate(335deg);
}
.custom {
  display: grid;
  grid-template-columns: 1fr 0.91fr;
  gap: 100px;
  position: relative;
  z-index: 1;
}
.section--dark h2 {
  max-width: 660px;
}
.section--dark .section-copy {
  margin-top: 24px;
  color: #d9e0e0;
}
.configurator {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.configurator h3 {
  margin: 0 0 22px;
  font:
    700 27px/1.08 "Be Vietnam Pro",
    sans-serif;
  letter-spacing: -0.05em;
}
.options {
  display: grid;
  gap: 1px;
}
.options label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: 15px;
}
.options input {
  width: 17px;
  height: 17px;
  accent-color: var(--orange);
}
.configurator__status {
  min-height: 43px;
  margin: 20px 0;
  color: #66747c;
  font-size: 13px;
}
.regional-backdrop {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    url("Ativo%201%20Primary.svg"),
    linear-gradient(180deg, #f8f3ef 0%, var(--paper) 52%, #fff8f5 100%);
  background-position:
    center right,
    center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}
.regional-backdrop .section--export,
.regional-backdrop .brands {
  position: relative;
  z-index: 1;
  background: transparent;
}
.section--export {
  background: linear-gradient(180deg, var(--soft), var(--paper));
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 50px;
}
.benefits article {
  min-height: 260px;
  border-radius: var(--radius);
  padding: 26px;
  background: var(--navy);
  color: #fff;
  transition: 0.3s;
}
.benefits article:first-child {
  background: var(--red);
}
.benefits article:hover {
  box-shadow: 0 22px 40px rgba(53, 64, 77, 0.26);
  transform: translateY(-9px);
}
.benefits span {
  display: block;
  color: var(--orange);
  font:
    700 17px Inter,
    sans-serif;
}
.benefits article:first-child span {
  color: #ffcfbf;
}
.benefits h3 {
  margin: 45px 0 10px;
  font:
    700 20px/1.1 "Be Vietnam Pro",
    sans-serif;
  letter-spacing: -0.045em;
}
.benefits p {
  margin: 0;
  color: #dce4e3;
  font-size: 14px;
  line-height: 1.5;
}
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 43px;
}
.tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 17px;
  background: #fff;
  color: var(--navy);
  font:
    700 12px Inter,
    sans-serif;
  cursor: pointer;
  transition: 0.22s;
}
.tabs button:hover {
  border-color: var(--orange);
  color: var(--red);
  transform: translateY(-2px);
}
.tabs button.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 9px 18px rgba(192, 20, 60, 0.19);
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.comparison article {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
}
.comparison__mvk {
  border-color: var(--red) !important;
  background: var(--red) !important;
  color: #fff;
}
.comparison article > span {
  font:
    700 25px/1.1 "Be Vietnam Pro",
    sans-serif;
  letter-spacing: -0.05em;
}
.comparison ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.comparison li {
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: #5e6c75;
}
.comparison__mvk li {
  border-color: rgba(255, 255, 255, 0.27);
  color: #fff;
}
.brands {
  padding: 78px 0;
  background: #fff8f5;
}
.brands__heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
}
.brands h2 {
  max-width: 700px;
  margin: 0;
  font:
    clamp(35px, 4vw, 56px)/1.02 "Be Vietnam Pro",
    sans-serif;
  letter-spacing: -0.06em;
}
.brands h2 em {
  color: var(--orange);
  font-style: normal;
}
.brands__heading p {
  margin: 0;
  color: #62717a;
  font-size: 17px;
}
.brands-marquee {
  width: min(1920px, 100vw);
  margin: 40px 0 0 50%;
  display: grid;
  gap: 13px;
  transform: translateX(-50%);
}
.brands-marquee__viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.brands-marquee__viewport.is-dragging {
  cursor: grabbing;
}
.brands-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.brands-marquee__group {
  display: flex;
  flex: 0 0 auto;
}
.brands-marquee__group > div {
  width: min(12.5vw, 240px);
  height: 102px;
  display: grid;
  place-items: center;
  padding: 19px;
}
.brands-marquee__group img {
  display: block;
  max-width: 76%;
  max-height: 53px;
  object-fit: contain;
  pointer-events: none;
  filter: grayscale(1);
  opacity: 1;
  transition:
    filter 0.25s,
    opacity 0.25s,
    transform 0.25s;
}
.brands-marquee__group > div:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}
@media (max-width: 700px) {
  .brands-marquee {
    gap: 9px;
    margin-top: 28px;
  }
  .brands-marquee__group > div {
    width: 25vw;
    height: 82px;
    padding: 14px;
  }
  .brands-marquee__group img {
    max-height: 39px;
  }
}
.brand-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 38px;
}
.brand-logos span {
  display: grid;
  min-height: 92px;
  place-items: center;
  border: 1px dashed #c5d0ce;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  color: #8a9997;
  font:
    700 11px Inter,
    sans-serif;
  letter-spacing: 0.1em;
  transition: 0.25s;
}
.brand-logos span:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}
.section--factory {
  background: var(--mist);
}
.factory {
  display: flex;
  flex-direction: column;
  gap: 46px;
}
.factory__content {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  grid-template-areas:
    "eyebrow eyebrow"
    "title copy"
    "title trust";
  column-gap: clamp(38px, 7vw, 110px);
  row-gap: 20px;
  padding: 4px 0 10px;
}
.factory__content .eyebrow {
  grid-area: eyebrow;
  margin-bottom: 0;
}
.factory__content h2 {
  grid-area: title;
  align-self: start;
  max-width: 690px;
  font-size: clamp(42px, 5vw, 70px);
}
.factory__content .section-copy {
  grid-area: copy;
  align-self: end;
  max-width: 500px;
  margin: 0;
  padding: 2px 0 2px 22px;
  border-left: 3px solid var(--orange);
  color: #596a71;
  font-size: 19px;
}
.factory__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow);
}
.factory__video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.trust {
  grid-area: trust;
  align-self: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
}
.trust span {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font:
    700 13px Inter,
    sans-serif;
  transition: 0.2s;
}
.trust span:before {
  content: "✓";
  margin-right: 9px;
  color: var(--orange);
}
.trust span:hover {
  padding-left: 7px;
  color: var(--red);
}
@media (max-width: 760px) {
  .factory__content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "copy"
      "trust";
    gap: 20px;
  }
  .factory__content .section-copy {
    padding-left: 16px;
    font-size: 17px;
  }
}
.section--process {
  background: var(--navy);
  color: #fff;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 50px;
}
.timeline article {
  min-height: 145px;
  padding: 17px 16px 5px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.25s;
}
.timeline article:hover {
  padding-left: 11px;
  background: rgba(255, 111, 64, 0.12);
}
.timeline b {
  color: var(--orange);
  font:
    700 13px Inter,
    sans-serif;
}
.timeline h3 {
  margin: 19px 0 4px;
  font:
    700 20px/1 "Be Vietnam Pro",
    sans-serif;
  letter-spacing: -0.05em;
}
.timeline p {
  margin: 0;
  color: #cbd4d4;
  font-size: 13px;
  line-height: 1.35;
}
.contact {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: linear-gradient(123deg, var(--red), #960d31);
  color: #fff;
}
.contact:before {
  content: "";
  position: absolute;
  right: -160px;
  top: -150px;
  width: 510px;
  height: 510px;
  border: 85px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 110px;
  position: relative;
  z-index: 1;
}
.contact h2 {
  max-width: 680px;
  margin: 0;
  font:
    clamp(40px, 4.4vw, 62px)/1.03 "Be Vietnam Pro",
    sans-serif;
  letter-spacing: -0.06em;
}
.contact p {
  max-width: 550px;
  color: #ffe3da;
  font-size: 19px;
}
.contact__details {
  display: flex;
  gap: 20px;
  margin-top: 34px;
  color: #ffd6c9;
  font:
    700 11px Inter,
    sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact__details span + span:before {
  content: "•";
  margin-right: 20px;
}
.lead-form {
  display: grid;
  gap: 14px;
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.lead-form label {
  display: grid;
  gap: 6px;
  font:
    700 11px Inter,
    sans-serif;
  letter-spacing: 0.04em;
}
.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.lead-form input,
.lead-form textarea {
  border: 1px solid #d6dfdd;
  border-radius: 9px;
  padding: 12px;
  background: #fbfcfb;
  color: var(--ink);
  font:
    400 16px "Fira Sans",
    sans-serif;
  transition: 0.2s;
}
.lead-form .iti {
  width: 100%;
}
.lead-form .iti input {
  width: 100%;
}
.lead-form .iti__country-container {
  border-radius: 9px 0 0 9px;
}
.lead-form .iti__selected-country {
  border-radius: 9px 0 0 9px;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 111, 64, 0.18);
}
.lead-form textarea {
  resize: vertical;
}
.lead-form .button {
  justify-self: start;
  margin-top: 4px;
  width: 100%;
}
.notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  max-width: 360px;
  border-left: 5px solid var(--red);
  border-radius: 12px;
  padding: 16px 18px;
  background: #fff;
  box-shadow: var(--shadow);
  font:
    700 13px Inter,
    sans-serif;
}
.notice--success {
  border-color: #43a06e;
}
footer {
  padding: 26px 0;
  background: #27313d;
  color: #c6d0cf;
  font:
    600 12px Inter,
    sans-serif;
}
footer .container {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer img {
  width: 106px;
  max-height: 84px;
  filter: brightness(0) invert(1);
}
footer a {
  margin-left: auto;
  color: #fff;
  text-decoration: none;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 0;
  height: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 2px 10px rgba(255, 111, 64, 0.5);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.68s ease,
    transform 0.68s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .header {
    height: 126px;
  }
  .brand img {
    width: 130px;
    max-height: 95px;
  }
  .nav {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    border: 0;
    background: none;
    color: var(--navy);
    font:
      700 12px Inter,
      sans-serif;
    cursor: pointer;
  }
  .menu-toggle span,
  .menu-toggle:after {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--orange);
    box-shadow: 0 6px var(--orange);
  }
  .nav.open {
    display: flex;
    position: absolute;
    top: 125px;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    padding: 15px 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav.open a {
    padding: 13px 0;
  }
  .hero__grid,
  .custom,
  .contact__grid {
    gap: 52px;
  }
  .products,
  .benefits {
    grid-template-columns: 1fr 1fr;
  }
  .factory {
    gap: 52px;
  }
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  body {
    font-size: 16px;
  }
  .container {
    width: min(100% - 30px, 1220px);
  }
  .header {
    height: 102px;
  }
  .brand img {
    width: 118px;
    max-height: 78px;
  }
  .brand span,
  .language {
    display: none;
  }
  .header__actions {
    margin-left: 0;
  }
  .nav.open {
    top: 101px;
    padding: 12px 15px;
  }
  .hero__grid,
  .section-heading,
  .custom,
  .comparison,
  .brands__heading,
  .factory,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .hero__grid {
    min-height: 0;
    gap: 38px;
    padding: 58px 0 42px;
  }
  .hero__visual {
    min-height: 290px;
  }
  .hero:after {
    left: 0;
    width: 65%;
    height: 4px;
  }
  .hero h1 {
    font-size: clamp(43px, 12vw, 63px);
  }
  .hero__lead {
    font-size: 18px;
  }
  .button-row .button {
    width: 100%;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
  .metrics div {
    min-height: 100px;
    padding: 18px 13px;
  }
  .metrics div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .metrics div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .metrics div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0 20px 0 0;
  }
  .metrics div:last-child {
    border-radius: 0;
  }
  .section {
    padding: 76px 0;
  }
  .section-heading,
  .brands__heading {
    gap: 18px;
  }
  .section-heading > p,
  .section-copy {
    font-size: 17px;
  }
  .products,
  .benefits {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }
  .product-card .image-placeholder {
    min-height: 200px;
  }
  .custom {
    gap: 38px;
  }
  .configurator {
    padding: 24px;
  }
  .benefits article {
    min-height: 220px;
  }
  .comparison article {
    min-height: auto;
    padding: 24px;
  }
  .brand-logos {
    grid-template-columns: 1fr 1fr;
  }
  .brand-logos span:last-child {
    display: none;
  }
  .factory {
    gap: 38px;
  }
  .factory__image {
    min-height: 320px;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
  }
  .timeline article {
    min-height: 125px;
    padding-bottom: 18px;
  }
  .contact {
    padding: 76px 0;
  }
  .contact__grid {
    gap: 44px;
  }
  .contact p {
    font-size: 17px;
  }
  .contact__details {
    display: grid;
    gap: 8px;
  }
  .contact__details span + span:before {
    display: none;
  }
  .lead-form {
    padding: 23px;
  }
  .reveal {
    transform: translateY(17px);
  }
  footer .container {
    flex-wrap: wrap;
  }
  footer a {
    margin-left: 0;
  }
  .texture--hero {
    right: -170px;
    opacity: 0.16;
  }
}
