*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Bricolage Grotesque", Arial, sans-serif;
}

.mr-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #101010;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
}

.mr-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;

  /*
    ЗАМЕНИТЬ НА СВОЮ КАРТИНКУ:
    background-image: url("assets/img/your-kitchen-image.jpg");
  */
  background-image:
    linear-gradient(120deg, rgba(60, 35, 20, 0.2), rgba(20, 20, 20, 0.1)),
    url("https://images.unsplash.com/photo-1556911220-bff31c812dba?q=80&w=2400&auto=format&fit=crop");
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
}

.mr-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.50) 0%,
      rgba(0, 0, 0, 0.22) 32%,
      rgba(0, 0, 0, 0.30) 58%,
      rgba(0, 0, 0, 0.76) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.08) 45%,
      rgba(0, 0, 0, 0.22) 100%
    );
}

.mr-hero__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  height: 72px;
  padding: 0 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
  color: #ffffff;

  transition:
    background-color 0.32s ease,
    box-shadow 0.32s ease,
    height 0.32s ease,
    padding 0.32s ease,
    color 0.32s ease;

  animation: mrHeroFadeDown 0.8s ease both;
}

.mr-site-header.is-scrolled {
  height: 72px;
  background: rgba(238, 238, 238, 0.94);
  color: #111111;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mr-hero__logo {
  color: currentColor;
}

.mr-hero__logo-text,
.mr-hero__logo-r {
  color: currentColor;
}

.mr-hero__nav-link {
  color: currentColor;
}

.mr-site-header.is-scrolled .mr-hero__nav-link {
  color: #111111;
}

.mr-site-header.is-scrolled .mr-hero__logo {
  color: #111111;
}

.mr-site-header.is-scrolled .mr-hero__phone {
  background: #C69866;
  color: #ffffff;
}

.mr-site-header.is-scrolled .mr-hero__top-cta {
  background: #C69866;
  color: #ffffff;
}

.mr-hero__nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 26px;
}

.mr-hero__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.mr-hero__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.mr-hero__nav-link:hover {
  color: #fff;
}

.mr-hero__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mr-hero__nav-link--dropdown span {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.9;
}

.mr-hero__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mr-hero__phone {
  width: 37px;
  height: 37px;
  border-radius: 999px;
  background: #C69866;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.mr-hero__phone svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.mr-hero__phone:hover {
  transform: translateY(-2px);
  background: #33895a;
}

.mr-hero__top-cta {
  height: 37px;
  min-width: 122px;
  padding: 4px 5px 4px 19px;
  border-radius: 999px;
  background: #C69866;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, background 0.25s ease;
}

.mr-hero__top-cta:hover {
  transform: translateY(-2px);
  background: #33895a;
}

.mr-hero__arrow {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  color: #C69866;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mr-hero__arrow svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.mr-hero__burger {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.mr-hero__burger span {
  display: block;
  width: 15px;
  height: 1.5px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mr-hero__burger.is-active span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

.mr-hero__burger.is-active span:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mr-hero__mobile-menu {
  position: absolute;
  top: 70px;
  left: 20px;
  right: 20px;
  z-index: 20;
  display: none;
  padding: 18px;
  border-radius: 22px;
  background: rgba(15, 15, 15, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mr-hero__mobile-menu a {
  display: block;
  padding: 11px 4px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.mr-hero__mobile-menu.is-open {
  display: block;
  animation: mrHeroMenuShow 0.25s ease both;
}

.mr-hero__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 36px;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 600px;
  align-items: end;
  gap: 40px;
}

.mr-hero__left {
  max-width: 900px;
  animation: mrHeroFadeUp 0.85s 0.08s ease both;
}

.mr-hero__location {
  width: max-content;
  height: 27px;
  padding: 0 12px 0 8px;
  margin-bottom: 13px;
  border-radius: 999px;
  background: #C69866;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}

.mr-hero__location svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  flex: 0 0 auto;
}

.mr-hero__title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(80px, 4vw, 46px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.040em;
  color: #fff;
  text-wrap: balance;
}

.mr-hero__right {
  max-width: 700px;
  padding-bottom: 2px;
  animation: mrHeroFadeUp 0.85s 0.18s ease both;
}

.mr-hero__text {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 25px;
  line-height: 1.58;
  font-weight: 450;
  letter-spacing: -0.015em;
}

.mr-hero__main-cta {
  width: max-content;
  min-width: 153px;
  height: 39px;
  padding: 20px 5px 20px 20px;
  border-radius: 999px;
  background: #fff;
  color: black;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mr-hero__main-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.mr-hero__main-arrow {
  width: 29px;
  height: 29px;
  border-radius: 999px;
  background: #C69866;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.mr-hero__main-cta:hover .mr-hero__main-arrow {
  transform: translateX(2px);
}

.mr-hero__main-arrow svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.mr-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 45px;
  z-index: 6;
  width: 15px;
  height: 24px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: transparent;
  transform: translateX(-50%);
  cursor: pointer;
  opacity: 0.85;
}

.mr-hero__scroll span {
  position: absolute;
  left: 50%;
  top: 5px;
  width: 3px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(-50%);
  animation: mrHeroScrollDot 1.6s ease-in-out infinite;
}

.mv-stats-section {
  width: 100%;
  padding: 150px 24px 150px;
  background: #eeeeee;
  overflow: hidden;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
}

.mv-stats-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.mv-stats-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px;
  border-radius: 30px;
  background: #e2e2e2;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.mv-stats-grid.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mv-stats-card {
  position: relative;
  min-height: 180px;
  border-radius: 25px;
  overflow: hidden;
  background: #f7f7f7;
}

.mv-stats-card--text {
  padding: 30px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #111111;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.mv-stats-card--text:hover {
  transform: translateY(-3px);
  background-color: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.mv-stats-card--image {
  background: #d8d8d8;
}

.mv-stats-card--image img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.mv-stats-card--image:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.02);
}

.mv-stats-badge {
  min-width: 107px;
  height: 51px;
  padding: 0 19px;
  border-radius: 999px;
  background: #C69866;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.mv-stats-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-stats-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.mv-stats-card h3 {
  margin: 0 0 10px;
  color: #050505;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.mv-stats-card p {
  max-width: 205px;
  margin: 0;
  color: #292929;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.mv-about-section {
  width: 100%;
  padding: 120px 24px 150px;
  background: #eeeeee;
  overflow: hidden;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
}

.mv-about-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.mv-about-top {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 900px) minmax(240px, 1fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 44px;
}

.mv-about-copy {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.mv-about-section.is-visible .mv-about-copy {
  opacity: 1;
  transform: translateY(0);
}

.mv-about-badge {
  width: max-content;
  min-height: 31px;
  padding: 4px 13px 4px 5px;
  margin-bottom: 17px;
  border-radius: 999px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.mv-about-badge-icon {
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: #C69866;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-about-badge-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  display: block;
}

.mv-about-title {
  max-width: 900px;
  margin: 0;
  color: #101010;
  font-size: clamp(34px, 3.15vw, 35px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.mv-about-title span {
  color: #606060;
}

.mv-about-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 7px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s 0.12s ease,
    transform 0.75s 0.12s ease;
}

.mv-about-section.is-visible .mv-about-action {
  opacity: 1;
  transform: translateY(0);
}

.mv-about-cta {
  height: 46px;
  padding: 5px 6px 5px 24px;
  border-radius: 999px;
  background: #C69866;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mv-about-cta:hover {
  transform: translateY(-2px);
  background: #33895a;
  box-shadow: 0 16px 32px rgba(46, 125, 79, 0.22);
}

.mv-about-cta-arrow {
  width: 35px;
  height: 35px;
  border-radius: 999px;
  background: #ffffff;
  color: #C69866;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-about-cta-arrow svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}

.mv-about-image-wrap {
  width: 100%;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: #d9d9d9;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s 0.2s ease,
    transform 0.85s 0.2s ease;
}

.mv-about-section.is-visible .mv-about-image-wrap {
  opacity: 1;
  transform: translateY(0);
}

.mv-about-gallery {
  width: 100%;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s 0.2s ease,
    transform 0.85s 0.2s ease;
}

.mv-about-section.is-visible .mv-about-gallery {
  opacity: 1;
  transform: translateY(0);
}

.mv-about-image-wrap {
  position: relative;
  width: 100%;
  height: 620px;
  border-radius: 18px;
  overflow: hidden;
  background: #d9d9d9;
}

.mv-about-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    opacity 0.28s ease,
    transform 0.65s ease,
    filter 0.65s ease;
}

.mv-about-image-wrap:hover .mv-about-image {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.mv-about-image.is-changing {
  opacity: 0;
}

.mv-about-thumbs {
  position: absolute;
  right: 12px;
  bottom: 11px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
}

.mv-about-thumb {
  width: 105px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 7px;
  overflow: hidden;
  background: #d9d9d9;
  cursor: pointer;
  opacity: 0.88;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.mv-about-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.mv-about-thumb.is-active {
  opacity: 1;
  border-color: #C69866;
}

.mv-about-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.mv-services-section {
  width: 100%;
  padding: 150px 24px 150px;
  background: #eeeeee;
  overflow: hidden;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
}

.mv-services-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.mv-services-head {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(320px, 540px);
  align-items: end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 50px;
}

.mv-services-title-wrap {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.mv-services-section.is-visible .mv-services-title-wrap {
  opacity: 1;
  transform: translateY(0);
}

.mv-services-badge {
  width: max-content;
  min-height: 31px;
  padding: 4px 14px 4px 5px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #101010;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.mv-services-badge-icon {
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: #C69866;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-services-badge-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  display: block;
}

.mv-services-title {
  margin: 0;
  color: #080808;
  font-size: clamp(52px, 4.7vw, 65px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.065em;
}

.mv-services-desc {
  max-width: 520px;
  margin: 0 0 8px auto;
  color: #555555;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s 0.12s ease,
    transform 0.75s 0.12s ease;
}

.mv-services-section.is-visible .mv-services-desc {
  opacity: 1;
  transform: translateY(0);
}

.mv-services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 30px;
  background: #e2e2e2;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s 0.18s ease,
    transform 0.85s 0.18s ease;
}

.mv-services-section.is-visible .mv-services-grid {
  opacity: 1;
  transform: translateY(0);
}

.mv-services-card {
  min-width: 0;
  border-radius: 25px;
  background: #f7f7f7;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.mv-services-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.09);
}

.mv-services-image-link {
  position: relative;
  display: block;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 21px;
  background: #d9d9d9;
  text-decoration: none;
}

.mv-services-image-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    transform 0.65s ease,
    filter 0.65s ease;
}

.mv-services-card:hover .mv-services-image-link img {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.02);
}

.mv-services-dots {
  position: absolute;
  left: 50%;
  bottom: 13px;
  z-index: 2;
  height: 25px;
  min-width: 55px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(100, 100, 100, 0.62);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transform: translateX(-50%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mv-services-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  display: block;
}

.mv-services-card-body {
  min-height: 195px;
  padding: 25px 24px 22px;
  display: flex;
  flex-direction: column;
}

.mv-services-card h3 {
  margin: 0 0 13px;
  color: #111111;
  font-size: 25px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.mv-services-card p {
  max-width: 390px;
  margin: 0;
  color: #555555;
  font-size: 18px;
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.mv-services-link {
  width: max-content;
  margin: auto 0 0 auto;
  color: #C69866;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.mv-services-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.mv-services-link:hover {
  color: #256940;
  transform: translateX(2px);
}

.mv-services-link:hover svg {
  transform: translate(2px, -2px);
}

.mv-services-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 44px;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s 0.3s ease,
    transform 0.75s 0.3s ease;
}

.mv-services-section.is-visible .mv-services-bottom {
  opacity: 1;
  transform: translateY(0);
}

.mv-services-main-cta {
  height: 48px;
  padding: 6px 7px 6px 26px;
  border-radius: 999px;
  background: #C69866;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mv-services-main-cta:hover {
  transform: translateY(-2px);
  background: #33895a;
  box-shadow: 0 16px 32px rgba(46, 125, 79, 0.22);
}

.mv-services-main-cta-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #ffffff;
  color: #C69866;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-services-main-cta-arrow svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}

.mv-projects-section {
  width: 100%;
  padding: 150px 24px;
  background: #eeeeee;
  overflow: visible;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
}

.mv-projects-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px minmax(0, 720px);
  justify-content: center;
  align-items: start;
  gap: 95px;
}

.mv-projects-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}

.mv-projects-intro {
  width: 100%;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.mv-projects-section.is-visible .mv-projects-intro {
  opacity: 1;
  transform: translateY(0);
}

.mv-projects-badge {
  width: max-content;
  min-height: 31px;
  padding: 4px 14px 4px 5px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #101010;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.mv-projects-badge-icon {
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: #C69866;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-projects-badge-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  display: block;
}

.mv-projects-title {
  margin: 0 0 24px;
  color: #080808;
  font-size: clamp(52px, 4.7vw, 50px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.067em;
}

.mv-projects-text {
  max-width: 330px;
  margin: 0 0 28px;
  color: #333333;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.mv-projects-cta {
  height: 48px;
  padding: 6px 7px 6px 26px;
  border-radius: 999px;
  background: #C69866;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mv-projects-cta:hover {
  transform: translateY(-2px);
  background: #33895a;
  box-shadow: 0 16px 32px rgba(46, 125, 79, 0.22);
}

.mv-projects-cta-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #ffffff;
  color: #C69866;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-projects-cta-arrow svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}

.mv-projects-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s 0.16s ease,
    transform 0.85s 0.16s ease;
}

.mv-projects-section.is-visible .mv-projects-list {
  opacity: 1;
  transform: translateY(0);
}

.mv-project-card {
  width: 100%;
  padding: 8px;
  border-radius: 30px;
  background: #e2e2e2;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.mv-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.08);
}

.mv-project-card-info {
  min-height: 210px;
  padding: 26px 24px 18px;
  border-radius: 25px 25px 14px 14px;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mv-project-card-info h3 {
  max-width: 630px;
  margin: 0 0 12px;
  color: #080808;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.mv-project-card-info p {
  max-width: 640px;
  margin: 0;
  color: #555555;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.mv-project-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.mv-project-tags {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.mv-project-tags span {
  min-height: 22px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid #b8b8b8;
  background: #eeeeee;
  color: #4a4a4a;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.mv-project-tags svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  flex: 0 0 auto;
}

.mv-project-details {
  flex: 0 0 auto;
  color: #C69866;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.mv-project-details svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.mv-project-details:hover {
  color: #256940;
  transform: translateX(2px);
}

.mv-project-details:hover svg {
  transform: translate(2px, -2px);
}

.mv-project-compare {
  position: relative;
  width: 100%;
  height: 360px;
  margin-top: 8px;
  border-radius: 16px 16px 25px 25px;
  overflow: hidden;
  background: #d9d9d9;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mv-project-before,
.mv-project-after {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mv-project-before img,
.mv-project-after img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    transform 0.65s ease,
    filter 0.65s ease;
}

.mv-project-card:hover .mv-project-before img,
.mv-project-card:hover .mv-project-after img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.mv-project-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 3px;
  background: #ffffff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.mv-project-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.mv-project-handle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mv-project-label {
  position: absolute;
  bottom: 16px;
  z-index: 6;
  min-height: 25px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mv-project-label--before {
  left: 16px;
}

.mv-project-label--after {
  right: 16px;
}

.mv-process-section {
  width: 100%;
  padding: 150px 24px 150px;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
}

.mv-process-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.mv-process-head {
  max-width: 760px;
  margin: 0 auto 90px;
  text-align: center;
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.mv-process-section.is-visible .mv-process-head {
  opacity: 1;
  transform: translateY(0);
}

.mv-process-badge {
  width: max-content;
  min-height: 31px;
  padding: 4px 14px 4px 5px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #101010;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.mv-process-badge-icon {
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: #2e7d4f;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-process-badge-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  display: block;
}

.mv-process-title {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(54px, 5.3vw, 82px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.mv-process-desc {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.mv-process-timeline {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 95px;
}

.mv-process-line {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 1;
}

.mv-process-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--process-progress, 0%);
  background: #2e7d4f;
  transition: height 0.2s linear;
}

.mv-process-step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  align-items: center;
  gap: 70px;
  min-height: 360px;
}

.mv-process-step > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.mv-process-step.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.mv-process-step.is-visible > *:nth-child(2) {
  transition-delay: 0.08s;
}

.mv-process-step.is-visible > *:nth-child(3) {
  transition-delay: 0.15s;
}

.mv-process-media {
  width: 100%;
  height: 350px;
  border-radius: 22px;
  overflow: hidden;
  background: #1a1a1a;
}

.mv-process-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.mv-process-media:hover img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.04);
}

.mv-process-number {
  position: relative;
  z-index: 3;
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.mv-process-step.is-visible .mv-process-number {
  color: #ffffff;
}

.mv-process-content {
  max-width: 530px;
}

.mv-process-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mv-process-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.mv-process-content h3 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.065em;
}

.mv-process-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.mv-process-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 90px;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s 0.25s ease,
    transform 0.75s 0.25s ease;
}

.mv-process-section.is-visible .mv-process-bottom {
  opacity: 1;
  transform: translateY(0);
}

.mv-process-cta {
  height: 52px;
  padding: 6px 7px 6px 28px;
  border-radius: 999px;
  background: #2e7d4f;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mv-process-cta:hover {
  transform: translateY(-2px);
  background: #33895a;
  box-shadow: 0 16px 32px rgba(46, 125, 79, 0.28);
}

.mv-process-cta-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  color: #2e7d4f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-process-cta-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.mv-reviews-section {
  width: 100%;
  padding: 150px 0 150px;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
}

.mv-reviews-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.mv-reviews-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.mv-reviews-section.is-visible .mv-reviews-head {
  opacity: 1;
  transform: translateY(0);
}

.mv-reviews-badge {
  width: max-content;
  min-height: 31px;
  padding: 4px 14px 4px 5px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #101010;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.mv-reviews-badge-icon {
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: #2e7d4f;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-reviews-badge-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  display: block;
}

.mv-reviews-title {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(54px, 5.3vw, 82px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.075em;
}

.mv-reviews-desc {
  max-width: 670px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.mv-reviews-marquee {
  width: 100vw;
  margin-left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.85s 0.16s ease;
}

.mv-reviews-section.is-visible .mv-reviews-marquee {
  opacity: 1;
}

.mv-reviews-track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: max-content;
  padding: 0 24px;
  cursor: grab;
  user-select: none;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.mv-reviews-track.is-dragging {
  cursor: grabbing;
}

.mv-review-item {
  width: 438px;
  flex: 0 0 438px;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.mv-reviews-section.is-visible .mv-review-item {
  opacity: 1;
  transform: translateY(0);
}

.mv-reviews-section.is-visible .mv-review-item:nth-child(2) {
  transition-delay: 0.08s;
}

.mv-reviews-section.is-visible .mv-review-item:nth-child(3) {
  transition-delay: 0.16s;
}

.mv-reviews-section.is-visible .mv-review-item:nth-child(4) {
  transition-delay: 0.24s;
}

.mv-reviews-section.is-visible .mv-review-item:nth-child(5) {
  transition-delay: 0.32s;
}

.mv-review-image {
  width: 100%;
  height: 285px;
  margin-bottom: 16px;
  border-radius: 30px;
  overflow: hidden;
  background: #101010;
  border: 8px solid #151515;
}

.mv-review-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: brightness(0.72);
  transition:
    transform 0.65s ease,
    filter 0.65s ease;
  pointer-events: none;
}

.mv-review-item:hover .mv-review-image img {
  transform: scale(1.055);
  filter: brightness(0.9) saturate(1.05) contrast(1.04);
}

.mv-review-card {
  min-height: 325px;
  padding: 30px 28px 28px;
  border-radius: 30px;
  background: #030303;
  border: 8px solid #111111;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.mv-review-item:hover .mv-review-card {
  border-color: #1c1c1c;
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(255, 255, 255, 0.035);
}

.mv-review-stars {
  margin-bottom: 24px;
  color: #2e7d4f;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 2px;
}

.mv-review-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.52;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.mv-review-author {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mv-review-author img {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  background: #202020;
  pointer-events: none;
}

.mv-review-author h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.mv-review-author span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.mv-reviews-bottom {
  display: flex;
  justify-content: center;
  margin-top: 68px;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s 0.32s ease,
    transform 0.75s 0.32s ease;
}

.mv-reviews-section.is-visible .mv-reviews-bottom {
  opacity: 1;
  transform: translateY(0);
}

.mv-reviews-cta {
  height: 52px;
  padding: 6px 7px 6px 28px;
  border-radius: 999px;
  background: #2e7d4f;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mv-reviews-cta:hover {
  transform: translateY(-2px);
  background: #33895a;
  box-shadow: 0 16px 32px rgba(46, 125, 79, 0.28);
}

.mv-reviews-cta-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  color: #2e7d4f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-reviews-cta-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

/* общая анимация кнопок */
.mv-btn-anim {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
}

.mv-btn-anim::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-105%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-btn-anim > span:first-child {
  position: relative;
  z-index: 2;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-btn-anim svg {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-btn-anim:hover::before {
  transform: translateX(0);
}

.mv-btn-anim:hover > span:first-child {
  transform: translateX(3px);
}

.mv-btn-anim:hover svg {
  transform: translateX(3px);
}

.mv-btn-anim:active {
  transform: translateY(0) scale(0.985);
}

.mv-final-cta-section {
  width: 100%;
  padding: 76px 24px 86px;
  background: #eeeeee;
  overflow: hidden;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
}

.mv-final-cta-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.mv-final-cta-image-wrap {
  width: min(100%, 1000px);
  height: 560px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: #d9d9d9;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.mv-final-cta-section.is-visible .mv-final-cta-image-wrap {
  opacity: 1;
  transform: translateY(0);
}

.mv-final-cta-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    transform 0.75s ease,
    filter 0.75s ease;
}

.mv-final-cta-image-wrap:hover .mv-final-cta-image {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

.mv-final-cta-content {
  max-width: 590px;
  margin: 70px auto 0;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.85s 0.14s ease,
    transform 0.85s 0.14s ease;
}

.mv-final-cta-section.is-visible .mv-final-cta-content {
  opacity: 1;
  transform: translateY(0);
}

.mv-final-cta-title {
  margin: 0 0 18px;
  color: #050505;
  font-size: clamp(42px, 3.8vw, 58px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -0.065em;
}

.mv-final-cta-text {
  max-width: 560px;
  margin: 0 auto;
  color: #202020;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.mv-final-cta-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mv-final-cta-phone {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #2e7d4f;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mv-final-cta-phone svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.mv-final-cta-phone:hover {
  transform: translateY(-2px);
  background: #33895a;
  box-shadow: 0 14px 28px rgba(46, 125, 79, 0.24);
}

.mv-final-cta-button {
  height: 44px;
  padding: 5px 6px 5px 26px;
  border-radius: 999px;
  background: #2e7d4f;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mv-final-cta-button:hover {
  background: #33895a;
  box-shadow: 0 14px 28px rgba(46, 125, 79, 0.24);
}

.mv-final-cta-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
  color: #2e7d4f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-final-cta-arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

/* общая анимация кнопок */
.mv-btn-anim {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
}

.mv-btn-anim::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-105%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-btn-anim > span:first-child {
  position: relative;
  z-index: 2;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-btn-anim svg {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-btn-anim:hover::before {
  transform: translateX(0);
}

.mv-btn-anim:hover > span:first-child {
  transform: translateX(3px);
}

.mv-btn-anim:hover svg {
  transform: translateX(3px);
}

.mv-btn-anim:active {
  transform: translateY(0) scale(0.985);
}

.mv-contact-section {
  width: 100%;
  padding: 150px 24px 150px;
  background: #eeeeee;
  overflow: hidden;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
}

.mv-contact-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 600px);
  align-items: center;
  gap: 80px;
}

.mv-contact-info {
  max-width: 700px;
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.mv-contact-section.is-visible .mv-contact-info {
  opacity: 1;
  transform: translateY(0);
}

.mv-contact-badge {
  width: max-content;
  min-height: 37px;
  padding: 5px 16px 5px 5px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: #ffffff;
  color: #101010;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.mv-contact-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #2e7d4f;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-contact-badge-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}

.mv-contact-title {
  margin: 0 0 28px;
  color: #050505;
  font-size: clamp(62px, 5.2vw, 84px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.075em;
}

.mv-contact-text {
  max-width: 660px;
  margin: 0;
  color: #666666;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.mv-contact-details {
  max-width: 660px;
  margin-top: 66px;
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.mv-contact-detail {
  width: 100%;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 28px;
}

.mv-contact-detail span {
  color: #666666;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.mv-contact-detail a,
.mv-contact-detail p {
  margin: 0;
  color: #2e7d4f;
  text-decoration: none;
  text-align: right;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.04em;
  transition: color 0.25s ease;
}

.mv-contact-detail p {
  color: #666666;
}

.mv-contact-detail a:hover {
  color: #256940;
}

.mv-contact-form {
  width: 100%;
  padding: 10px;
  border-radius: 30px;
  background: #e1e1e1;
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s 0.14s ease,
    transform 0.85s 0.14s ease;
}

.mv-contact-section.is-visible .mv-contact-form {
  opacity: 1;
  transform: translateY(0);
}

.mv-contact-form-inner {
  width: 100%;
  padding: 28px;
  border-radius: 23px;
  background: #f2f2f2;
}

.mv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.mv-form-group {
  min-width: 0;
}

.mv-form-group--full + .mv-form-row {
  margin-top: 22px;
}

.mv-form-group label {
  display: block;
  margin-bottom: 10px;
  color: #111111;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.mv-form-group label span {
  color: #2e7d4f;
}

.mv-form-group input,
.mv-form-group textarea,
.mv-form-group select {
  width: 100%;
  border: 1px solid #d2d2d2;
  outline: none;
  border-radius: 13px;
  background: #e7e7e7;
  color: #111111;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.02em;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mv-form-group input,
.mv-form-group select {
  height: 52px;
  padding: 0 15px;
}

.mv-form-group textarea {
  height: 108px;
  min-height: 108px;
  max-height: 190px;
  resize: vertical;
  padding: 15px;
}

.mv-form-group input::placeholder,
.mv-form-group textarea::placeholder {
  color: #999999;
}

.mv-form-group input:focus,
.mv-form-group textarea:focus,
.mv-form-group select:focus {
  border-color: rgba(46, 125, 79, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(46, 125, 79, 0.08);
}

.mv-select-wrap {
  position: relative;
}

.mv-select-wrap::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #999999;
  border-bottom: 2px solid #999999;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.mv-form-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  color: #333333;
}

.mv-contact-submit {
  width: 100%;
  height: 52px;
  margin-top: 22px;
  padding: 6px 7px 6px 28px;
  border: 0;
  border-radius: 999px;
  background: #2e7d4f;
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 19px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mv-contact-submit:hover {
  transform: translateY(-2px);
  background: #33895a;
  box-shadow: 0 16px 32px rgba(46, 125, 79, 0.22);
}

.mv-contact-submit-arrow {
  position: absolute;
  right: 7px;
  width: 39px;
  height: 39px;
  border-radius: 999px;
  background: #ffffff;
  color: #2e7d4f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mv-contact-submit-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

/* общая анимация кнопок */
.mv-btn-anim {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
}

.mv-btn-anim::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-105%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-btn-anim > span:first-child {
  position: relative;
  z-index: 2;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-btn-anim svg {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv-btn-anim:hover::before {
  transform: translateX(0);
}

.mv-btn-anim:hover > span:first-child {
  transform: translateX(3px);
}

.mv-btn-anim:hover svg {
  transform: translateX(3px);
}

.mv-btn-anim:active {
  transform: translateY(0) scale(0.985);
}

.mv-footer {
  width: 100%;
  padding: 105px 24px 76px;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
}

.mv-footer-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.mv-footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(160px, 0.55fr) minmax(160px, 0.55fr) minmax(300px, 0.85fr);
  gap: 86px;
  align-items: start;
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.mv-footer.is-visible .mv-footer-main {
  opacity: 1;
  transform: translateY(0);
}

.mv-footer-logo {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.25s ease;
}

.mv-footer-logo:hover {
  opacity: 0.82;
}

.mv-footer-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #2e7d4f;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 7px;
  flex: 0 0 auto;
}

.mv-footer-logo-mark span {
  display: block;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.92);
}

.mv-footer-logo-text {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.mv-footer-logo-r {
  align-self: flex-start;
  margin-left: -4px;
  margin-top: -4px;
  font-size: 14px;
  font-weight: 600;
}

.mv-footer-description {
  max-width: 355px;
  margin: 28px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.mv-footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mv-footer-social {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.mv-footer-social svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  display: block;
}

.mv-footer-social:hover {
  transform: translateY(-3px);
  border-color: #2e7d4f;
  background: #2e7d4f;
  color: #ffffff;
}

.mv-footer-col,
.mv-footer-contact {
  padding-top: 4px;
}

.mv-footer-col h3,
.mv-footer-contact h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.mv-footer-col a {
  width: max-content;
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.04em;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.mv-footer-col a:hover {
  color: #2e7d4f;
  transform: translateX(3px);
}

.mv-footer-contact-link {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.04em;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.mv-footer-contact-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.mv-footer-contact-link:hover {
  color: #2e7d4f;
  transform: translateX(3px);
}

.mv-footer-bottom {
  margin-top: 82px;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.85s 0.15s ease,
    transform 0.85s 0.15s ease;
}

.mv-footer.is-visible .mv-footer-bottom {
  opacity: 1;
  transform: translateY(0);
}

.mv-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.mv-footer-bottom a {
  color: #2e7d4f;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mv-footer-bottom a:hover {
  color: #43a96e;
}

@keyframes mrHeroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mrHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mrHeroMenuShow {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mrHeroScrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .mr-hero__header {
    left: 22px;
    right: 22px;
  }

  .mr-hero__nav {
    gap: 18px;
  }

  .mr-hero__content {
    left: 22px;
    right: 22px;
    grid-template-columns: minmax(700px, 1fr) 700px;
  }

  .mr-hero__title {
    font-size: clamp(34px, 5vw, 42px);
  }
  
  .mv-stats-section {
    padding: 48px 20px 60px;
  }

  .mv-stats-grid {
    width: min(100%, 720px);
    grid-template-columns: repeat(2, 1fr);
  }

  .mv-stats-card {
    min-height: 210px;
  }

  .mv-stats-card--image img {
    min-height: 210px;
  }

  .mv-stats-card--text {
    justify-content: center;
  }

  .mv-stats-card p {
    max-width: 250px;
  }
  
  .mv-about-section {
    padding: 95px 22px 110px;
  }

  .mv-about-top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }

  .mv-about-action {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .mv-about-title {
    max-width: 950px;
    font-size: clamp(34px, 5.2vw, 48px);
  }

  .mv-about-image-wrap {
    height: 460px;
    border-radius: 18px;
  }
  
    .mv-about-image-wrap {
    height: 520px;
  }

  .mv-about-thumb {
    width: 88px;
    height: 62px;
  }
  
    .mv-services-section {
    padding: 100px 22px 110px;
  }

  .mv-services-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 42px;
  }

  .mv-services-title {
    font-size: clamp(46px, 7vw, 68px);
  }

  .mv-services-desc {
    max-width: 700px;
    margin: 0;
    font-size: 19px;
  }

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

  .mv-services-image-link {
    height: 260px;
  }

  .mv-services-card-body {
    min-height: 185px;
  }
  
    .mv-projects-section {
    padding: 100px 22px 110px;
  }

  .mv-projects-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mv-projects-sticky {
    position: relative;
    top: auto;
  }

  .mv-projects-intro {
    max-width: 760px;
  }

  .mv-projects-title {
    font-size: clamp(48px, 7vw, 68px);
  }

  .mv-projects-text {
    max-width: 620px;
    font-size: 18px;
  }

  .mv-projects-list {
    max-width: 820px;
    margin: 0 auto;
  }

  .mv-project-card-info h3 {
    font-size: 32px;
  }
  
    .mv-process-section {
    padding: 110px 22px 120px;
  }

  .mv-process-head {
    margin-bottom: 70px;
  }

  .mv-process-title {
    font-size: clamp(48px, 7vw, 70px);
  }

  .mv-process-step {
    grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
    gap: 36px;
  }

  .mv-process-number {
    font-size: 58px;
  }

  .mv-process-media {
    height: 300px;
  }

  .mv-process-content h3 {
    font-size: 34px;
  }

  .mv-process-content p {
    font-size: 16px;
  }
  
    .mv-reviews-section {
    padding: 110px 0 120px;
  }

  .mv-reviews-head {
    margin-bottom: 58px;
  }

  .mv-reviews-title {
    font-size: clamp(48px, 7vw, 70px);
  }

  .mv-reviews-desc {
    font-size: 18px;
  }

  .mv-review-item {
    width: 390px;
    flex-basis: 390px;
  }

  .mv-review-image {
    height: 255px;
  }

  .mv-review-card {
    min-height: 305px;
  }

  .mv-review-text {
    font-size: 18px;
  }
  
    .mv-final-cta-section {
    padding: 70px 22px 82px;
  }

  .mv-final-cta-image-wrap {
    height: 480px;
  }

  .mv-final-cta-content {
    margin-top: 58px;
  }

  .mv-final-cta-title {
    font-size: clamp(40px, 6vw, 54px);
  }
  
    .mv-contact-section {
    padding: 110px 22px 120px;
  }

  .mv-contact-container {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .mv-contact-info {
    max-width: 850px;
  }

  .mv-contact-title {
    font-size: clamp(54px, 7vw, 76px);
  }

  .mv-contact-text {
    max-width: 760px;
    font-size: 22px;
  }

  .mv-contact-details {
    max-width: 760px;
    margin-top: 52px;
  }

  .mv-contact-form {
    max-width: 760px;
  }
  
    .mv-footer {
    padding: 90px 22px 66px;
  }

  .mv-footer-main {
    grid-template-columns: 1.2fr 1fr;
    gap: 58px 70px;
  }

  .mv-footer-brand {
    grid-column: span 2;
  }

  .mv-footer-description {
    max-width: 500px;
  }

  .mv-footer-bottom {
    margin-top: 70px;
  }
}



/* SMALL TABLET */
@media (max-width: 860px) {
  .mr-hero {
    min-height: 760px;
  }

  .mr-hero__nav {
    display: none;
  }

  .mr-hero__burger {
    display: inline-block;
  }

  .mr-hero__content {
    bottom: 36px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mr-hero__right {
    max-width: 700px;
  }

  .mr-hero__scroll {
    display: none;
  }
}

/* MOBILE */
@media (max-width: 560px) {
  .mr-hero {
    min-height: 720px;
  }

  .mr-hero__bg {
    background-position: 55% center;
  }

  .mr-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.58) 0%,
        rgba(0, 0, 0, 0.24) 35%,
        rgba(0, 0, 0, 0.82) 100%
      );
  }

  .mr-hero__header {
    top: 14px;
    left: 16px;
    right: 16px;
  }

  .mr-hero__logo-text {
    font-size: 16px;
  }

  .mr-hero__phone {
    width: 36px;
    height: 36px;
  }

  .mr-hero__top-cta {
    display: none;
  }

  .mr-hero__content {
    left: 16px;
    right: 16px;
    bottom: 28px;
  }

  .mr-hero__location {
    height: 26px;
    font-size: 10px;
    margin-bottom: 12px;
  }

  .mr-hero__title {
    max-width: 360px;
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -0.07em;
  }

  .mr-hero__text {
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 15px;
  }

  .mr-hero__main-cta {
    height: 38px;
  }
  
  .mv-stats-section {
    padding: 34px 16px 46px;
  }

  .mv-stats-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 7px;
    border-radius: 16px;
  }

  .mv-stats-card {
    min-height: 190px;
    border-radius: 11px;
  }

  .mv-stats-card--text {
    padding: 32px 22px 28px;
  }

  .mv-stats-card--image img {
    min-height: 220px;
  }

  .mv-stats-badge {
    height: 50px;
    min-width: 108px;
    font-size: 32px;
    margin-bottom: 17px;
  }

  .mv-stats-card h3 {
    font-size: 17px;
  }

  .mv-stats-card p {
    font-size: 13px;
    max-width: 260px;
  }
  
  .mv-about-section {
    padding: 70px 16px 80px;
  }

  .mv-about-top {
    gap: 24px;
    margin-bottom: 30px;
  }

  .mv-about-badge {
    min-height: 30px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  .mv-about-badge-icon {
    width: 22px;
    height: 22px;
  }

  .mv-about-title {
    font-size: 31px;
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .mv-about-cta {
    width: 100%;
    max-width: 310px;
    height: 45px;
    padding-left: 22px;
    font-size: 14px;
  }

  .mv-about-image-wrap {
    height: 330px;
    border-radius: 16px;
  }

  .mv-about-image {
    object-position: center center;
  }
  
    .mv-about-image-wrap {
    height: 340px;
    border-radius: 16px;
  }

  .mv-about-thumb {
    width: 72px;
    height: 50px;
    border-radius: 6px;
  }
  
  .mv-services-section {
    padding: 75px 16px 85px;
  }

  .mv-services-head {
    gap: 24px;
    margin-bottom: 34px;
  }

  .mv-services-badge {
    min-height: 30px;
    font-size: 13px;
    margin-bottom: 17px;
  }

  .mv-services-badge-icon {
    width: 22px;
    height: 22px;
  }

  .mv-services-title {
    font-size: 38px;
    line-height: 1.04;
    letter-spacing: -0.06em;
  }

  .mv-services-desc {
    font-size: 17px;
    line-height: 1.45;
  }

  .mv-services-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 7px;
    border-radius: 22px;
  }

  .mv-services-card {
    border-radius: 18px;
  }

  .mv-services-image-link {
    height: 245px;
    border-radius: 15px;
  }

  .mv-services-card-body {
    min-height: auto;
    padding: 22px 20px 21px;
  }

  .mv-services-card h3 {
    font-size: 24px;
    margin-bottom: 11px;
  }

  .mv-services-card p {
    font-size: 17px;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .mv-services-link {
    margin-left: auto;
    font-size: 15px;
  }

  .mv-services-bottom {
    margin-top: 32px;
  }

  .mv-services-main-cta {
    width: 100%;
    max-width: 260px;
    height: 48px;
  }
  
    .mv-projects-section {
    padding: 75px 16px 85px;
  }

  .mv-projects-container {
    gap: 36px;
  }

  .mv-projects-badge {
    min-height: 30px;
    font-size: 13px;
    margin-bottom: 17px;
  }

  .mv-projects-badge-icon {
    width: 22px;
    height: 22px;
  }

  .mv-projects-title {
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 1.04;
    letter-spacing: -0.06em;
  }

  .mv-projects-text {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .mv-projects-cta {
    height: 48px;
    max-width: 260px;
  }

  .mv-project-card {
    padding: 7px;
    border-radius: 22px;
  }

  .mv-project-card-info {
    min-height: auto;
    padding: 22px 20px 20px;
    border-radius: 17px 17px 12px 12px;
  }

  .mv-project-card-info h3 {
    font-size: 28px;
    line-height: 1.06;
  }

  .mv-project-card-info p {
    font-size: 16px;
  }

  .mv-project-card-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
  }

  .mv-project-details {
    margin-left: auto;
  }

  .mv-project-tags {
    gap: 6px;
  }

  .mv-project-tags span {
    font-size: 10px;
    min-height: 21px;
  }

  .mv-project-compare {
    height: 310px;
    margin-top: 7px;
    border-radius: 13px 13px 18px 18px;
  }

  .mv-project-handle {
    width: 34px;
    height: 34px;
  }

  .mv-project-label {
    bottom: 12px;
    min-height: 23px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .mv-project-label--before {
    left: 12px;
  }

  .mv-project-label--after {
    right: 12px;
  }
  
    .mv-process-section {
    padding: 80px 16px 90px;
  }

  .mv-process-head {
    margin-bottom: 55px;
    text-align: left;
  }

  .mv-process-badge {
    margin-left: 0;
    margin-right: 0;
    min-height: 30px;
    font-size: 13px;
  }

  .mv-process-badge-icon {
    width: 22px;
    height: 22px;
  }

  .mv-process-title {
    font-size: 40px;
    line-height: 1.03;
    letter-spacing: -0.065em;
  }

  .mv-process-desc {
    margin-left: 0;
    font-size: 17px;
  }

  .mv-process-timeline {
    gap: 54px;
  }

  .mv-process-line {
    left: 21px;
    top: 30px;
    bottom: 30px;
  }

  .mv-process-step,
  .mv-process-step--image-left,
  .mv-process-step--image-right {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    align-items: start;
  }

  .mv-process-step--image-left .mv-process-media,
  .mv-process-step--image-right .mv-process-media {
    grid-column: 2;
    grid-row: 2;
  }

  .mv-process-step--image-left .mv-process-number,
  .mv-process-step--image-right .mv-process-number {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .mv-process-step--image-left .mv-process-content,
  .mv-process-step--image-right .mv-process-content {
    grid-column: 2;
    grid-row: 1;
  }

  .mv-process-number {
    position: sticky;
    top: 88px;
    font-size: 30px;
    text-align: left;
    letter-spacing: -0.04em;
  }

  .mv-process-media {
    height: 260px;
    border-radius: 18px;
    margin-top: 22px;
  }

  .mv-process-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 14px;
  }

  .mv-process-content h3 {
    margin-bottom: 16px;
    font-size: 30px;
  }

  .mv-process-content p {
    font-size: 16px;
    line-height: 1.55;
  }

  .mv-process-bottom {
    margin-top: 60px;
  }

  .mv-process-cta {
    width: 100%;
    max-width: 360px;
    height: 50px;
    padding-left: 22px;
    font-size: 15px;
  }
  
    .mv-reviews-section {
    padding: 80px 0 90px;
  }

  .mv-reviews-head {
    margin-bottom: 46px;
    text-align: left;
    padding: 0 16px;
  }

  .mv-reviews-badge {
    margin-left: 0;
    margin-right: 0;
    min-height: 30px;
    font-size: 13px;
  }

  .mv-reviews-badge-icon {
    width: 22px;
    height: 22px;
  }

  .mv-reviews-title {
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 1.02;
    letter-spacing: -0.065em;
  }

  .mv-reviews-desc {
    margin-left: 0;
    font-size: 17px;
    line-height: 1.48;
  }

  .mv-reviews-track {
    gap: 14px;
    padding: 0 16px;
  }

  .mv-review-item {
    width: 84vw;
    flex-basis: 84vw;
  }

  .mv-review-image {
    height: 230px;
    border-radius: 22px;
    border-width: 6px;
    margin-bottom: 12px;
  }

  .mv-review-card {
    min-height: 310px;
    padding: 24px 22px 24px;
    border-radius: 22px;
    border-width: 6px;
  }

  .mv-review-stars {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .mv-review-text {
    font-size: 17px;
    line-height: 1.5;
  }

  .mv-review-author {
    padding-top: 24px;
    gap: 13px;
  }

  .mv-review-author img {
    width: 48px;
    height: 48px;
  }

  .mv-review-author h3 {
    font-size: 20px;
  }

  .mv-review-author span {
    font-size: 14px;
  }

  .mv-reviews-bottom {
    margin-top: 46px;
    padding: 0 16px;
  }

  .mv-reviews-cta {
    width: 100%;
    max-width: 330px;
    height: 50px;
    padding-left: 22px;
    font-size: 15px;
  }
  
    .mv-final-cta-section {
    padding: 56px 16px 70px;
  }

  .mv-final-cta-image-wrap {
    height: 320px;
    border-radius: 14px;
  }

  .mv-final-cta-content {
    margin-top: 44px;
  }

  .mv-final-cta-title {
    margin-bottom: 16px;
    font-size: 38px;
    line-height: 1.04;
    letter-spacing: -0.065em;
  }

  .mv-final-cta-text {
    font-size: 16px;
    line-height: 1.45;
  }

  .mv-final-cta-actions {
    margin-top: 24px;
  }

  .mv-final-cta-phone {
    width: 42px;
    height: 42px;
  }

  .mv-final-cta-button {
    height: 42px;
    padding-left: 20px;
    gap: 16px;
    font-size: 13px;
  }

  .mv-final-cta-arrow {
    width: 32px;
    height: 32px;
  }
  
    .mv-contact-section {
    padding: 80px 16px 90px;
  }

  .mv-contact-container {
    gap: 42px;
  }

  .mv-contact-badge {
    min-height: 34px;
    font-size: 15px;
    margin-bottom: 22px;
  }

  .mv-contact-badge-icon {
    width: 25px;
    height: 25px;
  }

  .mv-contact-title {
    margin-bottom: 22px;
    font-size: 42px;
    line-height: 1.02;
    letter-spacing: -0.07em;
  }

  .mv-contact-text {
    font-size: 18px;
    line-height: 1.48;
  }

  .mv-contact-details {
    margin-top: 40px;
    gap: 24px;
  }

  .mv-contact-detail {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mv-contact-detail span {
    font-size: 20px;
  }

  .mv-contact-detail a,
  .mv-contact-detail p {
    text-align: left;
    font-size: 18px;
  }

  .mv-contact-form {
    padding: 7px;
    border-radius: 22px;
  }

  .mv-contact-form-inner {
    padding: 22px;
    border-radius: 17px;
  }

  .mv-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .mv-form-group label {
    font-size: 14px;
  }

  .mv-form-group input,
  .mv-form-group select {
    height: 50px;
    font-size: 15px;
  }

  .mv-form-group textarea {
    height: 120px;
    min-height: 120px;
    font-size: 15px;
  }

  .mv-contact-submit {
    height: 50px;
    margin-top: 20px;
    font-size: 16px;
    padding-left: 18px;
    padding-right: 52px;
  }

  .mv-contact-submit-arrow {
    width: 36px;
    height: 36px;
  }
  
    .mv-footer {
    padding: 72px 16px 54px;
  }

  .mv-footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mv-footer-brand {
    grid-column: auto;
  }

  .mv-footer-logo-mark {
    width: 32px;
    height: 32px;
    padding: 6px;
  }

  .mv-footer-logo-text {
    font-size: 30px;
  }

  .mv-footer-description {
    margin: 24px 0 26px;
    font-size: 18px;
  }

  .mv-footer-socials {
    gap: 13px;
  }

  .mv-footer-social {
    width: 42px;
    height: 42px;
  }

  .mv-footer-social svg {
    width: 21px;
    height: 21px;
  }

  .mv-footer-col,
  .mv-footer-contact {
    padding-top: 0;
  }

  .mv-footer-col h3,
  .mv-footer-contact h3 {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .mv-footer-col a,
  .mv-footer-contact-link {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .mv-footer-contact-link svg {
    width: 22px;
    height: 22px;
  }

  .mv-footer-bottom {
    margin-top: 54px;
    text-align: left;
  }

  .mv-footer-bottom p {
    font-size: 17px;
  }
}

/* VERY SMALL MOBILE */
@media (max-width: 380px) {
  .mr-hero__title {
    font-size: 32px;
  }

  .mr-hero__content {
    gap: 20px;
  }

  .mr-hero__text {
    font-size: 11px;
  }
  
  .mv-stats-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mv-stats-badge {
    font-size: 30px;
  }
  
  .mv-about-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mv-about-title {
    font-size: 28px;
  }

  .mv-about-image-wrap {
    height: 300px;
  }
  
    .mv-about-image-wrap {
    height: 300px;
  }
  
    .mv-services-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mv-services-title {
    font-size: 34px;
  }

  .mv-services-desc {
    font-size: 16px;
  }

  .mv-services-image-link {
    height: 220px;
  }

  .mv-services-card h3 {
    font-size: 22px;
  }

  .mv-services-card p {
    font-size: 16px;
  }
  
    .mv-projects-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mv-projects-title {
    font-size: 34px;
  }

  .mv-projects-text {
    font-size: 16px;
  }

  .mv-project-card-info h3 {
    font-size: 25px;
  }

  .mv-project-card-info p {
    font-size: 15px;
  }

  .mv-project-compare {
    height: 270px;
  }
  
    .mv-process-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mv-process-title {
    font-size: 35px;
  }

  .mv-process-content h3 {
    font-size: 26px;
  }

  .mv-process-content p {
    font-size: 15px;
  }

  .mv-process-media {
    height: 230px;
  }

  .mv-process-cta {
    font-size: 14px;
    gap: 14px;
  }
  
    .mv-reviews-head,
  .mv-reviews-track,
  .mv-reviews-bottom {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mv-reviews-title {
    font-size: 35px;
  }

  .mv-reviews-desc {
    font-size: 16px;
  }

  .mv-review-item {
    width: 88vw;
    flex-basis: 88vw;
  }

  .mv-review-image {
    height: 210px;
  }

  .mv-review-text {
    font-size: 16px;
  }

  .mv-reviews-cta {
    font-size: 14px;
    gap: 14px;
  }
  
    .mv-final-cta-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mv-final-cta-image-wrap {
    height: 280px;
  }

  .mv-final-cta-title {
    font-size: 33px;
  }

  .mv-final-cta-text {
    font-size: 15px;
  }

  .mv-final-cta-button {
    max-width: 235px;
  }
  
    .mv-contact-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mv-contact-title {
    font-size: 36px;
  }

  .mv-contact-text {
    font-size: 16px;
  }

  .mv-contact-form-inner {
    padding: 18px;
  }

  .mv-contact-submit {
    font-size: 15px;
  }
  
    .mv-footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mv-footer-logo-text {
    font-size: 27px;
  }

  .mv-footer-description,
  .mv-footer-col a,
  .mv-footer-contact-link {
    font-size: 16px;
  }

  .mv-footer-bottom p {
    font-size: 15px;
  }
}

