/* Fonts */
@font-face {
  font-family: "Clover Grotesk";
  src: url("/static/font/CloverGrotesk-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clover Grotesk";
  src: url("/static/font/CloverGrotesk-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clover Grotesk";
  src: url("/static/font/CloverGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clover Grotesk";
  src: url("/static/font/CloverGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clover Grotesk";
  src: url("/static/font/CloverGrotesk-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --c-black: #000;
  --c-white: #fff;
  --c-gray-900: #141414;
  --c-gray-850: #1d1d1d;
  --c-gray-800: #272727;
  --c-gray-700: #363636;
  --c-gray-500: #8c8c8c;
  --c-gray-300: #d4d4d4;
  --c-primary-1: #007898;
  --c-primary-2: #18aed8;
  --c-primary-border: #005a73;

  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Clover Grotesk", sans-serif;
  background: var(--c-black);
  color: var(--c-white);
  line-height: 1.5;
}
body.is-modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-200%);
  background: var(--c-primary-1);
  color: var(--c-white);
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  z-index: 2000;
}
.skip-link:focus {
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 18px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(90deg, var(--c-primary-1), var(--c-primary-2));
  color: var(--c-white);
  border: 0;
  box-shadow: 0 10px 25px rgba(0, 120, 152, 0.25);
}
.btn--ghost {
  background: transparent;
  border: 1px solid var(--c-primary-border);
  color: var(--c-white);
}
.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo__img {
  height: auto;
  width: 270px;
  max-width: 270px;
  display: block;
}
.logo__text {
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  opacity: 0.9;
  font-size: 14px;
}
.nav a {
  text-decoration: none;
  opacity: 0.85;
}
.nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  height: 40px;
  width: 44px;
  padding: 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: var(--c-white);
  align-items: center;
  justify-content: center;
}

.nav-toggle__icon {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
  border-radius: 2px;
  transition: background 200ms ease;
}
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 200ms ease,
    top 200ms ease,
    bottom 200ms ease;
}
.nav-toggle__icon::before {
  top: -6px;
}
.nav-toggle__icon::after {
  bottom: -6px;
}

/* vira X quando o menu está aberto */
.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 854px;
  display: grid;
  align-items: center;
  padding-top: 92px; /* header offset */
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.15) 100%);
}

.hero__fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(174deg, transparent 50%, rgba(0, 0, 0, 1) 80%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1; /* acima do vídeo, abaixo do conteúdo */
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero__content {
  position: relative;
  padding: 90px 0 120px;
}
.hero__title {
  margin: 0 0 18px;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  max-width: 520px;
  margin: 0 0 26px;
  opacity: 0.85;
  font-size: 18px;
  line-height: 1.55;
}
.hero__subtitle strong {
  font-weight: 800;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__actions .btn {
  height: 56px;
  font-size: 14px;
}

/* Sections */
.section {
  padding: 70px 0;
}
.section--light {
  background: #fff;
  color: #000;
}
.section--dark {
  background: #000;
  color: #fff;
}
.legal-page__section {
  padding-top: 120px;
}
.section__heading {
  margin-bottom: 80px;
}
.section__heading--center {
  text-align: center;
}
.section__heading--right {
  text-align: right;
}
.section__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
}
.section__subtitle {
  margin: 6px 0 0;
  opacity: 0.8;
  font-size: 18px;
}
.section__title--dark,
.section__subtitle--dark {
  color: #000;
}

/* Advantages */
.advantages-row {
  display: grid;
  gap: 18px;
  align-items: start;
}
.advantages-row--light {
  grid-template-columns: repeat(4, 1fr);
}

/* Alinhamento horizontal dos itens (cards) */
.advantages-row--align-left .advantage-mini,
.advantages-row--align-left .advantage-dark {
  text-align: left;
}
.advantages-row--align-right .advantage-mini,
.advantages-row--align-right .advantage-dark {
  text-align: right;
}
.advantages-row--align-left .advantage-mini__icon,
.advantages-row--align-left .advantage-dark__icon {
  margin: 0 0 10px 0;
}
.advantages-row--align-center .advantage-mini__icon,
.advantages-row--align-center .advantage-dark__icon {
  margin: 0 auto 10px;
}
.advantages-row--align-right .advantage-mini__icon,
.advantages-row--align-right .advantage-dark__icon {
  margin: 0 0 10px auto;
}
.advantages-carousel {
  --adv-per-view: 4;
  --adv-gap: 24px;
  position: relative;
}
.advantages-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding: 2px;
  padding: 2px;
}
.advantages-carousel__viewport::-webkit-scrollbar {
  display: none;
}
.advantages-carousel .advantages-row {
  display: flex;
  gap: var(--adv-gap);
  align-items: stretch;
}
.advantages-carousel .advantage-mini,
.advantages-carousel .advantage-dark {
  flex: 0 0 calc((100% - (var(--adv-gap) * (var(--adv-per-view) - 1))) / var(--adv-per-view));
  scroll-snap-align: start;
}
.advantages-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.advantages-carousel__nav:disabled {
  opacity: 0.45;
  cursor: default;
}
.advantages-carousel__nav--prev {
  left: -12px;
}
.advantages-carousel__nav--next {
  right: -12px;
}
.advantages-carousel--dark .advantages-carousel__nav {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}
.advantage-mini {
  text-align: center;
  padding: 12px 10px 6px;
}
.advantage-mini__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 48px 48px;
}
.advantage-mini__name {
  font-weight: 900;
  letter-spacing: 0.11em;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}
.advantage-mini__desc {
  color: rgba(0, 0, 0, 0.72);
  font-size: 13px;
  margin-top: 8px;
}

.advantages-row--dark {
  grid-template-columns: repeat(5, 1fr);
}
.advantage-dark__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  opacity: 0.9;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 48px 48px;
}
.advantage-dark__name {
  font-weight: 900;
  letter-spacing: 0.11em;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}
.advantage-dark__desc {
  color: var(--c-gray-500);
  font-size: 13px;
  margin-top: 8px;
}

/* Banner */
.banner {
  position: relative;
  height: 470px;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
}
.banner__bg {
  position: absolute;
  inset: 0;
  background: #000;
  transform: scale(1.02);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.52);
}
.banner__content {
  position: relative;
}
.banner__text {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.02em;
  text-align: center;
}

/* About */
.about {
  position: relative;
  background: #272727;
  padding: 90px 0;
  overflow: hidden;
}
.about__bg {
  position: absolute;
  inset: 0;
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}
.about__title {
  margin: 0 0 14px;
  font-size: 40px;
}

.about__text {
  width: 50%;
}
.about__text p {
  margin: 0 0 12px;
  color: var(--c-gray-300);
  font-size: 16px;
  line-height: 1.6;
}

/* Gallery */
.gallery {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}
.gallery__bg {
  position: absolute;
  inset: 0;
  background: #000;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.gallery .container {
  position: relative;
}
.gallery__title {
  margin: 0 0 26px;
  text-align: center;
  font-size: 42px;
  letter-spacing: 0.02em;
}
.gallery__rail {
  position: relative;
  height: 420px;
  margin: 0 auto 20px;
  max-width: 980px;
}
.gallery__slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 560px;
  height: 350px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: inherit;
  color: inherit;
  transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px))) scale(var(--scale, 0.6));
  opacity: var(--opacity, 0);
  z-index: var(--z, 1);
  transition:
    transform 420ms ease,
    opacity 320ms ease,
    box-shadow 320ms ease;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.gallery__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
  opacity: 0;
  transition: opacity 240ms ease;
}
.gallery__slide.is-center::after {
  opacity: 1;
}
.gallery__slide.is-center {
  cursor: zoom-in;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}
.gallery__slide.is-left-1,
.gallery__slide.is-right-1 {
  --scale: 0.82;
  --opacity: 0.85;
  --y: 18px;
  --z: 2;
}
.gallery__slide.is-left-2,
.gallery__slide.is-right-2 {
  --scale: 0.64;
  --opacity: 0.6;
  --y: 46px;
  --z: 1;
}
.gallery__slide.is-left-1 {
  --x: -250px;
}
.gallery__slide.is-right-1 {
  --x: 250px;
}
.gallery__slide.is-left-2 {
  --x: -400px;
}
.gallery__slide.is-right-2 {
  --x: 400px;
}
.gallery__slide.is-center {
  --scale: 1;
  --opacity: 1;
  --x: 0px;
  --y: 0px;
  --z: 3;
}
.gallery__label {
  color: var(--c-white);
  position: absolute;
  left: 26px;
  bottom: 46px;
  font-weight: 600;
  line-height: 1.05;
  font-size: 30px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 240ms ease;
  max-width: 220px;
  text-align: left;
  z-index: 2;
}
.gallery__slide.is-center .gallery__label {
  opacity: 1;
}
.gallery__underline {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 180px;
  height: 3px;
  background: rgba(0, 130, 164, 1);
  opacity: 0;
  transition: opacity 240ms ease;
  z-index: 2;
}
.gallery__slide.is-center .gallery__underline {
  opacity: 1;
}
.gallery__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.gallery__control {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--c-white);
  font-size: 32px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gallery__dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  cursor: pointer;
  transition:
    transform 200ms ease,
    background 200ms ease;
}
.gallery__dot.is-active {
  background: var(--c-white);
  transform: scale(1.35);
}
.gallery__modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
}
.gallery__modal[hidden] {
  display: none;
}
.gallery__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.gallery__modal-dialog {
  position: relative;
  width: 100%;
  max-width: min(880px, 92vw);
  max-height: 84vh;
  background: #0d0d0d;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: 18px;
}
.gallery__modal-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.gallery__modal-text {
  color: var(--c-white);
  font-size: 18px;
  font-weight: 700;
}
.gallery__modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.65);
  color: var(--c-white);
  cursor: pointer;
}

/* MVV */
.mvv {
  position: relative;
  padding: 90px 0 95px;
  overflow: hidden;
}
.mvv__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.82));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.mvv .container {
  position: relative;
}
.mvv__title {
  text-align: center;
  margin: 0;
  font-size: 40px;
  font-weight: 600;
}
.mvv__line {
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  margin: 28px 0 26px;
}
.mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mvv-card {
  background: rgba(70, 70, 68, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 28px 24px;
  min-height: 380px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.mvv-card:hover {
  cursor: pointer;
  background: rgba(0, 120, 152, 0.3);
  border-color: rgba(0, 120, 152, 0.3);
}
.mvv-card__icon {
  width: 64px;
  height: 64px;
  padding-bottom: 18px;
}
.mvv-card__title {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 400;
}
.mvv-card__text {
  margin: 0;
  color: var(--c-gray-300);
  font-size: 15px;
  line-height: 1.5;
}
.mvv-card__list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--c-gray-300);
  font-size: 14px;
  line-height: 1.9;
}

/* Systems */
.systems {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.systems__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.systems__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 26px;
  align-items: start;
}
.systems__left {
  align-self: center;
}
.systems__title {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.1;
  max-width: 220px;
}
.systems__bullets {
  color: var(--c-gray-300);
  line-height: 1.7;
  opacity: 0.9;
  max-width: 180px;
  position: relative;
  padding-left: 14px;
}
.systems__bullets::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  background: rgba(0, 120, 152, 1);
}
.systems__cards {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  --systems-per-view: 3;
}
.systems__track {
  display: flex;
  gap: 0;
  transition: transform 520ms ease;
  will-change: transform;
}
.system-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
  min-height: 260px;
  max-height: 480px;
  aspect-ratio: 2 / 4;
  flex: 0 0 calc(100% / var(--systems-per-view));
  border: 0;
  padding: 0;
  text-align: left;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  transition: flex-basis 300ms ease;
}
.system-card__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 260ms ease;
  transform: scaleX(1);
  transform-origin: center;
}
.system-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  opacity: 1;
  transition: opacity 240ms ease;
}
.system-card__text {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  transition: opacity 200ms ease;
}
.system-card__sep {
  opacity: 0.9;
}
.system-card.is-hovered .system-card__media {
  transform: scaleX(1.03);
}
.system-card.is-hovered .system-card__media::after {
  opacity: 0;
}
.systems__cards.is-hovered .system-card.is-visible {
  flex-basis: 5%;
}
.systems__cards.is-hovered .system-card.is-visible.is-hovered {
  flex-basis: 90%;
}
.systems__cards.is-hovered .system-card.is-visible:not(.is-hovered) .system-card__text {
  opacity: 0;
}

/* Budget */
.budget {
  background: #464644;
  padding: 90px 0;
}
.budget__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.budget__image {
  border-radius: 6px;
  min-height: 720px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: var(--shadow-soft);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.budget__form {
  border-radius: 6px;
  padding: 26px;
}
.budget__title {
  margin: 0 0 18px;
  font-size: 34px;
}

.form {
  display: grid;
  gap: 12px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 16px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--c-gray-800);
  color: var(--c-white);
  font-size: 16px;
}
.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(24, 174, 216, 0.7);
  box-shadow: 0 0 0 3px rgba(24, 174, 216, 0.12);
}

/* Footer */
.footer {
  background: var(--c-gray-700);
  background-image: url("/static/img/footer-bg.png");
  background-position: right center;
  background-size: 220px auto;
  background-repeat: no-repeat;
  padding: 46px 0;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.footer__title {
  font-weight: 800;
  margin-bottom: 10px;
}
.footer__text {
  color: rgba(238, 238, 238, 0.7);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 10px;
}
.footer__link {
  display: block;
  text-decoration: none;
  margin-top: 6px;
  font-weight: 700;
  font-size: 14px;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.footer__social-link {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
}

/* Responsive */

/* Mobile */
@media (max-width: 720px) {
  .about__bg {
    background-image: none !important;
  }

  .container {
    padding: 0 16px;
  }

  .logo__img {
    width: 180px;
  }
}
@media (max-width: 980px) {
  .header__inner {
    grid-template-columns: 1fr auto auto;
  }
  .nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav.nav--open {
    display: grid;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 75px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 14px;
    gap: 12px;
  }

  .about__text {
    width: 100%;
  }

  .advantages-row--light {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-row--dark {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-carousel {
    --adv-per-view: 2;
  }

  .gallery__rail {
    height: 360px;
  }
  .gallery__slide {
    width: 460px;
    height: 300px;
  }
  .gallery__slide.is-left-1 {
    --x: -190px;
  }
  .gallery__slide.is-right-1 {
    --x: 190px;
  }
  .gallery__slide.is-left-2,
  .gallery__slide.is-right-2 {
    --x: 0px;
    --opacity: 0;
  }
  .mvv__grid {
    grid-template-columns: 1fr;
  }
  .systems__inner {
    grid-template-columns: 1fr;
  }
  .systems__cards {
    --systems-per-view: 1;
  }
  .systems__cards.is-hovered .system-card.is-visible {
    flex-basis: 100%;
  }
  .budget__inner {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) and (max-width: 1200px) {
  .advantages-carousel {
    --adv-per-view: 3;
  }
}

@media (max-width: 720px) {
  .advantages-carousel {
    --adv-per-view: 1;
  }
  .advantages-carousel__nav {
    display: none;
  }
  .gallery__rail {
    height: 300px;
  }
  .gallery__slide {
    width: min(92vw, 360px);
    height: 230px;
  }
  .gallery__slide.is-left-1,
  .gallery__slide.is-right-1,
  .gallery__slide.is-left-2,
  .gallery__slide.is-right-2 {
    --x: 0px;
    --opacity: 0;
  }
  .gallery__label {
    color: var(--c-white);
    font-size: 22px;
  }
}
