@font-face {
  font-family: 'Evolventa';
  src: url('../fonts/Evolventa-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Evolventa';
  src: url('../fonts/Evolventa-BoldOblique.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Evolventa';
  src: url('../fonts/Evolventa-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Evolventa';
  src: url('../fonts/Evolventa-Oblique.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html { background: #F7F5F2; }
body {
  font-family: 'Evolventa', Arial, sans-serif;
  color: #fff;
  background: #F7F5F2;
  -webkit-font-smoothing: antialiased;
  
  overflow-x: hidden;
  width: 100%;
}

body.menu-open { overflow: hidden; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1),
              transform .7s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--left  { transform: translateX(-50px); }
.reveal--right { transform: translateX(50px); }
.reveal--zoom  { transform: scale(.92); }
.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--zoom.is-visible { transform: none; }

@media (max-width: 768px) {
  .reveal--left,
  .reveal--right { transform: translateY(40px); }
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.22, .61, .36, 1),
              transform .6s cubic-bezier(.22, .61, .36, 1);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .65s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .75s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4B6656;
  color: #fff;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  border-radius: 10px;
  transition: background .2s ease;
}
.btn-primary:hover { background: #3c5446; }

.popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup[hidden] { display: none; }

.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.popup__window {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 64px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popup-in .25s ease;
}
@keyframes popup-in {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: none;
  transition: background .2s ease;
}
.popup__close:hover { background: rgba(0, 0, 0, 0.06); }

.popup__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  color: #29573B;
  margin-bottom: 16px;
}
.popup__sub {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.4;
  color: #000;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.popup__form { text-align: left; }
.popup__input {
  display: block;
  width: 100%;
  height: 56px;
  border: none;
  border-bottom: 1px solid #C7C7C7;
  background: none;
  color: #000;
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 0 4px;
  margin-bottom: 24px;
  border-radius: 0;
  transition: border-color .2s ease;
}
.popup__input::placeholder { color: #6B6B6B; }
.popup__input:focus { outline: none; border-bottom-color: #29573B; }
.popup__input.input-error { border-bottom-color: #e0534d; }

.popup__btn {
  width: 100%;
  height: 64px;
  border-radius: 12px;
  font-size: 16px;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25) inset;
  margin-top: 8px;
}
.popup__policy {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #6B6B6B;
  margin-top: 18px;
}
.popup__policy a { text-decoration: underline; color: #29573B; }

.popup__check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #4B6656;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.popup--thanks .popup__btn { max-width: 240px; margin: 8px auto 0; }

@media (max-width: 768px) {
  .popup__window {
    border-radius: 18px;
    padding: 32px 20px 24px;
  }
  .popup__btn { height: 53px; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  animation: popup-in .25s ease;
  transform-origin: center center;
  transition: transform .18s ease;
  cursor: zoom-in;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}
.lightbox__img.is-zoomed { cursor: grab; transition: transform .05s linear; }
.lightbox__img.is-dragging { cursor: grabbing; transition: none; }

.lightbox__hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  transition: background .2s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.22); }

@media (max-width: 768px) {
  .lightbox { padding: 16px; }
  .lightbox__close { top: 14px; right: 14px; }
}

.layout__slide { cursor: zoom-in; }

.hero {
  padding: 20px;
}
.hero__inner {
  position: relative;
  min-height: 810px;
  border-radius: 30px;
  overflow: hidden;
  background-image: linear-gradient(124.35deg, rgba(0, 0, 0, 0.6) 52%, rgba(255, 249, 249, 0) 178.64%),
                    url('../images/hero-desktop.png');
  background-size: cover;
  background-position: center;
  padding: 12px clamp(16px, 3vw, 40px) 0;
}

@media (min-width: 1500px) {
  .hero__inner {
    max-width: none;
    margin-left: 0px;
    margin-right: 0px;
    width: auto;
  }
}

.header {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 16px);
  
  padding: 0 clamp(16px, 1.6vw, 24px);
  height: 83px;
}
.header__logo--desktop { flex-shrink: 0; }
.header__logo--desktop img { width: 100px; height: 90px; }
.header__logo--color { display: none; }

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.8vw, 10px);
  flex-wrap: nowrap;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 6px;
  background: #E0CAA6;
  color: #000;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 100%;
  white-space: nowrap;
  transition: filter .2s ease;
  padding: 0 clamp(8px, 0.9vw, 12px);
}
.nav__link:hover { filter: brightness(.92); }

.header__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 0 clamp(10px, 1vw, 16px);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 100%;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}
.header__btn {
  height: 55px;
  padding: 0 clamp(14px, 1.4vw, 22px);
  border-radius: 10px;
  font-size: clamp(13px, 1.05vw, 16px);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25) inset;
}
.header__burger { display: none; }

.hero__content {
  position: relative;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 1.6vw, 24px) 0;
  min-height: calc(810px - 95px);
}
.hero__pretitle {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 100%;
  margin-bottom: clamp(12px, 1.4vw, 20px);
}
.hero__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.55vw, 80px);
  line-height: 1.0;
  margin-bottom: 0;
}
.hero__title-line { display: block; }
.hero__title-row {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  flex-wrap: wrap;
}
.hero__title-row .hero__title-line { display: inline-block; }

.hero__title-tablet { display: none; }

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 28px);
  padding: clamp(12px, 1.3vw, 14px) clamp(16px, 1.9vw, 28px);
  border-radius: 12px;
  margin-top: 12px;
  background: linear-gradient(180deg, #4B6656 0%, #27563A 84.31%, #094923 155.19%);
}
.price-badge__price {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.45vw, 50px);
  line-height: 100%;
  white-space: nowrap;
}
.price-badge__divider {
  width: 1px;
  height: 49px;
  background: #fff;
  flex-shrink: 0;
}
.price-badge__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-badge__label {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.1;
}
.price-badge__sub {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 0.97vw, 14px);
  line-height: 1.1;
}

.hero__specs,
.hero__tablet-price,
.hero__tablet-btn,
.hero__bottom-mobile,
.hero__form { display: none; }

.hero__caption {
  position: absolute;
  
  left: clamp(16px, 1.6vw, 24px);
  bottom: clamp(30px, 4vw, 60px);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__caption-line {
  width: 4px;
  height: 55px;
  background: #fff;
  flex-shrink: 0;
}
.hero__caption-text {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.66vw, 24px);
  line-height: 1.2;
}

.hero__tree { display: none; }

@media (min-width: 1500px) {
  .header { gap: 20px; height: 95px; }
  .header__logo--desktop img { width: 120px; height: 108px; }
  .header__nav { gap: 12px; }
  .nav__link { font-size: 16px; height: 36px; padding: 0 16px; border-radius: 8px; }
  .header__phone { font-size: 18px; height: 62px; padding: 0 22px; }
  .header__btn { font-size: 18px; height: 62px; padding: 0 28px; }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .header { gap: 8px; padding: 0 4px; }
  .header__logo--desktop img { width: 90px; height: 70px; }
  .header__nav { gap: 5px; }
  .nav__link { font-size: 12px; padding: 0 7px; }
  .header__phone { font-size: 13px; padding: 0 10px; }
  .header__btn { font-size: 13px; padding: 0 12px; }
}

@media (max-width: 1024px) {
  body { background: #F7F5F2; }

  .hero {
    padding: 0;
    background: #F7F5F2;
  }
  .hero__inner {
    min-height: 0;
    border-radius: 0;
    background: #F7F5F2;
    padding: 0;
  }

  .header {
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    padding: 32px 41px 24px;
    gap: 24px 32px;
    background: #F7F5F2;
  }
  .header__logo--desktop { display: none; }
  .header__logo--color {
    display: block;
    flex-basis: 100%;
  }
  .header__logo--color img { width: 105px; height: 85px; }

  .header__nav { gap: 28px; order: 2; }
  .nav__link {
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    color: #6B6B6B;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
  }
  .nav__link:hover { filter: none; color: #111; }

  .header__phone {
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    margin-left: auto;
    order: 3;
    color: #111;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
  }
  .header__btn { display: none; }
  .header__burger { display: none; }

  .hero__content {
    position: relative;
    height: auto;
    padding: 0;
    margin: 2px 0 0;
    min-height: 619px;
    border-radius: 0;
    overflow: hidden;
    background-image: linear-gradient(97.52deg, rgba(0, 0, 0, 0.6) 7.94%, rgba(255, 249, 249, 0) 96.02%),
                      url('../images/hero-desktop.png');
    background-size: cover;
    background-position: center;
    padding: 170px 70px 60px;
    color: #fff;
  }

  .hero__pretitle { display: none; }
  .price-badge { display: none; }
  .hero__caption { display: none; }
  .hero__form { display: none; }

  .hero__title-default { display: none; }
  .hero__title-tablet { display: block; }

  .hero__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 55px;
    margin-bottom: 20px;
  }

  .hero__specs {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
  }
  .spec {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .spec img { width: 20px; height: 20px; }
  .spec span {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
  }
  .spec-divider {
    width: 1px;
    height: 19px;
    background: #fff;
  }

  .hero__tablet-price { display: block; margin-bottom: 20px; }
  .hero__tablet-price-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 30px;
  }
  .hero__tablet-price-value {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 30px;
  }
  .hero__tablet-price-sub {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
  }
  .hero__tablet-price-sub span { color: #288E62; }

  .hero__tablet-btn {
    display: inline-flex;
    width: 327px;
    max-width: 100%;
    height: 55px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
  }
}

@media (min-width: 769px) and (max-width: 880px) {
  .header { padding-left: 24px; padding-right: 24px; }
  .header__nav { gap: 16px; }
  .nav__link { font-size: 13px; }
  .header__phone { font-size: 13px; }
}

@media (max-width: 768px) {
  body { background: #F7F5F2; }

  .hero {
    padding: 0;
    background: #F7F5F2;
  }

  .hero__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
    padding: 18px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.6) 100%),
                      url('../images/hero-desktop.png');
    background-size: cover;
    background-position: calc(50% + 22px) top;
    color: #fff;
  }

  .header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    padding: 0 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    gap: 0;
  }
  .header__logo--desktop { display: none; }
  .header__logo--color {
    display: block;
    flex-basis: auto;
  }
  .header__logo--color img { width: auto; height: 55px; }

  .header__nav { display: none; }
  .header__phone { display: none; }
  .header__btn { display: none; }
  .header {
    position: relative;
    z-index: 1000;
  }
  .header__burger {
    display: block;
    position: relative;
    width: 35px;
    height: 35px;
  }
  .header__burger img { width: 35px; height: 35px; }

  .header__burger[aria-expanded="true"] img { opacity: 0; }
  .header__burger[aria-expanded="true"]::before,
  .header__burger[aria-expanded="true"]::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: #000;
  }
  .header__burger[aria-expanded="true"]::before { transform: translate(-50%, -50%) rotate(45deg); }
  .header__burger[aria-expanded="true"]::after  { transform: translate(-50%, -50%) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    top: 84px;
    right: 18px;
    left: auto;
    width: 270px;
    max-width: calc(100vw - 36px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 18px;
    border-radius: 12px;
    
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }
  
  .mobile-menu[hidden] { display: none; }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mobile-menu__link {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #fff;
  }
  .mobile-menu__divider {
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin: 18px 0;
  }
  .mobile-menu__phone {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    margin-bottom: 16px;
  }
  .mobile-menu__btn {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
  }

  .hero__content {
    position: relative;
    flex: 1;
    height: auto;
    min-height: 0;
    padding: 0;
    margin-top: 24px;
    background: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .hero__pretitle,
  .hero__title,
  .price-badge,
  .hero__caption,
  .hero__bottom-mobile {
    width: 100%;
    max-width: 340px;
    margin-left: 0;
    margin-right: 0;
  }


  .hero__title .price-badge { display: none; }
  .hero__caption { display: none; }

  .hero__bottom-mobile {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
  }
  .hero__bottom-caption {
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    color: #fff;
    text-align: left;
  }

  .hero__specs { display: none; }
  .hero__tablet-price { display: none; }
  .hero__tablet-btn { display: none; }

  .hero__pretitle {
    display: block;
    font-size: 10px;
    margin-bottom: 14px;
    text-align: left;
  }
  .hero__title {
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 16px;
    text-align: left;
  }
  
  .hero__title-default { display: block; }
  .hero__title-tablet { display: none; }

  .hero__title-row {
    display: block;
    gap: 0;
  }
  .hero__title-line { display: block; }

  .price-badge {
    display: flex;
    position: static;
    height: 44px;
    border-radius: 6px;
    gap: 12px;
    padding: 0 14px;
    margin-top: 16px;
  }
  .price-badge__price { font-size: 18px; }
  .price-badge__divider { height: 30px; }
  .price-badge__info { gap: 4px; text-align: left; }
  .price-badge__label { font-size: 12px; }
  .price-badge__sub { font-size: 11px; }

  .hero__caption-line { display: none; }

  .hero__form {
    display: block;
    position: relative;
    margin: 16px 18px 0;
    border-radius: 12px;
    border: none;
    background: #292F2C;
    padding: 20px 16px;
    text-align: left;
    color: #fff;
  }
  .hero__form-title {
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
  }
  .hero__form-sub {
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
  }
  .hero__form-input {
    display: block;
    width: 100%;
    height: 35px;
    border-radius: 6px;
    border: none;
    background: #fff;
    color: #000;
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 12px;
    padding: 0 12px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
  }
  .hero__form-input::placeholder { color: #000; opacity: .9; }
  .hero__form-input.input-error { outline: 1px solid #e0534d; }

  .hero__form-btn {
    width: 100%;
    height: 53px;
    border-radius: 10px;
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
  }
  .hero__form-policy {
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 130%;
    position: relative;
    z-index: 2;
  }
  .hero__form-policy a { text-decoration: underline; }

  .hero__tree {
    display: block;
    position: absolute;
    width: 210px;
    height: 312px;
    object-fit: contain;
    bottom: 120px;
    z-index: 10;
    pointer-events: none;
  }
  .hero__tree--left { left: -80px; }
  .hero__tree--right { right: -70px; }
}

.features {
  background: #F7F5F2;
  padding: 20px 0 40px;
}

.features .container {
  padding: 0 calc(clamp(16px, 3vw, 40px) + clamp(16px, 1.6vw, 24px));
}
.features__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 100%;
  color: #000;
  margin-bottom: 28px;
}
.features__title--mobile { display: none; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 164px;
  border-radius: 10px;
  padding: 16px 24px 20px;
  background: linear-gradient(180deg, #094923 0%, #29573B 48.08%, #4B6656 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 154px;
  height: 153px;
  border-radius: 50%;
  background: #3FBF7F;
  filter: blur(60px);
  opacity: .85;
  z-index: 0;
  pointer-events: none;
  
  top: 3px;
  left: -31px;
}

.feature-card:nth-child(2)::before { top: 5px;  left: 8px; }
.feature-card:nth-child(3)::before { top: -40px; left: auto; right: -50px; }
.feature-card:nth-child(4)::before { top: 80px;  left: auto; right: 50px; }

.feature-card__pattern {
  position: absolute;
  width: 202px;
  height: 219px;
  right: -40px;
  top: 0px;
  z-index: 1;
  pointer-events: none;
  opacity: .9;
}

.feature-card:nth-child(2) .feature-card__pattern { top: 0px; right: 0px; transform: rotate(0deg); }
.feature-card:nth-child(3) .feature-card__pattern { top: 0px; right: 0; transform: rotate(0deg); }
.feature-card:nth-child(4) .feature-card__pattern { top: 80px; right: 0px; transform: rotate(0deg); width: 362px; height: 170px;}

.feature-card__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-card__icon { width: 59px; height: 59px; flex-shrink: 0; }
.feature-card__label {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #EAEAEA;
}
.feature-card__value {
  position: relative;
  z-index: 2;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: #fff;
}
.feature-card__value span {
  font-size: 16px;
  font-weight: 700;
}

.interior {
  background: #F7F5F2;
  padding: 40px 0 70px;
}
.interior .container { overflow: hidden; }
.interior__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 100%;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.interior__slider {
  position: relative;
  
  --slide-w: 580px;
  --slide-h: 437px;
  --slide-scale: 0.4828;
  --slide-shift: 450px;
  height: var(--slide-h);
  margin-bottom: 28px;
}
.interior__track {
  position: relative;
  height: 100%;
}
.interior__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  
  width: var(--slide-w);
  height: var(--slide-h);
  margin-left: calc(var(--slide-w) / -2);
  margin-top: calc(var(--slide-h) / -2);
  border-radius: 14px;
  object-fit: cover;
  opacity: 0;
  transform: translateX(0) scale(var(--slide-scale));
  transition: transform .55s cubic-bezier(.4, 0, .2, 1), opacity .55s ease;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
}

.interior__slide.is-active {
  opacity: 1;
  z-index: 3;
  transform: translateX(0) scale(1);
}

.interior__slide.is-prev {
  opacity: 1;
  z-index: 2;
  transform: translateX(calc(var(--slide-shift) * -1)) scale(var(--slide-scale));
}

.interior__slide.is-next {
  opacity: 1;
  z-index: 2;
  transform: translateX(var(--slide-shift)) scale(var(--slide-scale));
}

@media (max-width: 1280px) {
  .interior__slider {
    --slide-w: 480px;
    --slide-h: 362px;
    --slide-shift: 380px;
  }
}
@media (max-width: 1100px) {
  .interior__slider {
    --slide-w: 420px;
    --slide-h: 316px;
    --slide-shift: 330px;
  }
}

.interior__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}
.interior__arrow {
  width: 57px;
  height: 57px;
  border: 1px solid #288E62;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background .2s ease;
}
.interior__arrow:hover { background: rgba(40, 142, 98, .1); }
.interior__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.interior__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #cfcfcf;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.interior__dot.is-active {
  background: #288E62;
  border-color: #288E62;
}

.interior__btn {
  display: flex;
  width: 179px;
  height: 55px;
  margin: 0 auto;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25) inset;
}

.layout {
  background: #F7F5F2;
  padding: 60px 0 70px;
}
.layout .container { padding: 0 130px; }

.layout__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 1.15;
  color: #000;
  margin-bottom: 36px;
}
.layout__title span { color: #27563A; }
.layout__title--tablet { display: none; }

.layout__card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: clamp(24px, 2.2vw, 36px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.layout__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: stretch;
}

/* ---- левая колонка: инфо ---- */
.layout__info {
  display: flex;
  flex-direction: column;
}
.layout__subtitle {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.1;
  color: #000;
  margin-bottom: 8px;
}
.layout__desc {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.4;
  color: #6B6B6B;
  margin-bottom: 24px;
}

/* три ключевые цифры крупно */
.layout__hero-specs {
  display: flex;
  align-items: stretch;
  gap: clamp(12px, 1.4vw, 20px);
  padding: 18px 0 22px;
  border-bottom: 1px solid #ECEBE6;
  margin-bottom: 20px;
}
.hero-spec {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.hero-spec__value {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1;
  color: #27563A;
  white-space: nowrap;
}
.hero-spec__label {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.1;
  color: #9a9a9a;
}
.hero-spec__divider {
  width: 1px;
  align-self: stretch;
  background: #ECEBE6;
}

/* список комнат — строки ключ→значение */
.layout__rooms {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.room-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #F1F0EC;
}
.room-row:last-child { border-bottom: none; }
.room-row__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: .85;
}
.room-row__name {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.2;
  color: #6B6B6B;
  flex: 1;
  min-width: 0;
}
.room-row__value {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.2;
  color: #000;
  text-align: right;
  white-space: nowrap;
}

/* CTA */
.layout__cta {
  margin-top: auto;
  width: 100%;
  height: 60px;
  border-radius: 12px;
  font-size: clamp(15px, 1.1vw, 17px);
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25) inset;
}
.layout__cta-note {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.3;
  color: #9a9a9a;
  text-align: center;
  margin-top: 12px;
}

/* ---- правая колонка: план ---- */
.layout__slider {
  position: relative;
  display: flex;
  flex-direction: column;
}
.layout__slider-track {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 340px;
  background: #F7F5F2;
  border-radius: 16px;
  overflow: hidden;
}
.layout__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
  cursor: zoom-in;
}
.layout__slide.is-active { opacity: 1; pointer-events: auto; }

.layout__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.layout__arrow {
  width: 57px;
  height: 57px;
  border: 1px solid #288E62;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background .2s ease;
}
.layout__arrow:hover { background: rgba(40, 142, 98, .1); }
.layout__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.layout__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #cfcfcf;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.layout__dot.is-active { background: #288E62; border-color: #288E62; }

.layout-form {
  margin-top: 60px;
  border-radius: 20px;
  border: 1px solid #fff;
  background: linear-gradient(92.68deg, #000000 0.81%, #666666 52.79%, #292F2C 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 40px;
  row-gap: 18px;
  align-items: center;
}
.layout-form__text { grid-column: 1; grid-row: 1; }
.layout-form__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 12px;
}
.layout-form__sub {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
}
.layout-form__fields {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 236px;
  gap: 16px;
  align-items: center;
}
.layout-form__input {
  height: 70px;
  border-radius: 10px;
  border: none;
  background: #fff;
  color: #000;
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 0 20px;
}
.layout-form__input::placeholder { color: #000; opacity: .9; }
.layout-form__input.input-error { outline: 2px solid #e0534d; }
.layout-form__btn {
  height: 70px;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25) inset;
}
.layout-form__policy {
  grid-column: 1 / -1;
  grid-row: 3;
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
}
.layout-form__policy a { text-decoration: underline; }

.construction {
  background: #F7F5F2;
  padding: 0 20px 70px;
}

.construction .container { padding: 0; }

.construction__card {
  position: relative;
  border-radius: 30px;
  background: #27563A;
  
  padding: clamp(36px, 4vw, 60px) calc(clamp(16px, 3vw, 40px) + clamp(16px, 1.6vw, 24px)) clamp(40px, 5vw, 70px);
  overflow: hidden;
}

.construction__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 18px;
}
.construction__title-tablet { display: none; }

.construction__subtitle {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.66vw, 24px);
  line-height: 1.25;
  color: #E6E6E6;
  max-width: 760px;
  margin-bottom: 32px;
}

.construction__hint { display: none; }

.construction__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.6vw, 40px);
  align-items: stretch;
}

.construction__photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 580 / 827;
}
.construction__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  object-position: right center;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .construction__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }
  
  .construction__photo { align-self: start; }
  .construction__info {
    height: 100%;
    justify-content: space-between;
    padding: 32px;
  }
  
  .layer-card__num { font-size: 64px; margin-bottom: 8px; }
  .layer-card__title { font-size: 28px; margin-bottom: 12px; }
  .layer-card__specs { font-size: 15px; margin-bottom: 12px; }
  .layer-card__text { font-size: 15px; margin-bottom: 18px; }
  .layer-card__benefits { padding: 18px 22px; gap: 16px; }
  .layer-benefit__icon { width: 32px; height: 32px; }
  .layer-benefit span { font-size: 15px; }
  .layer-card__note { margin-top: 20px; margin-bottom: 12px; }
  .layer-card__btn { height: 50px; }
}

.layer-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  transform: translate(-50%, -50%);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, box-shadow .2s ease;
  z-index: 2;
  animation: layer-dot-pulse 2s ease-out infinite;
}

.layer-dot::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #094923;
}
.layer-dot:hover { box-shadow: 0 0 0 6px rgba(40, 142, 98, .35); }

.layer-dot.is-active {
  background: #288E62;
  animation: none;
  box-shadow: 0 0 0 5px rgba(40, 142, 98, .35);
}

@keyframes layer-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 142, 98, .7);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.18);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(40, 142, 98, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 142, 98, 0);
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .layer-dot { animation: none; }
}

.construction__info {
  position: relative;
  background: #FFFFFF;
  border-radius: 14px;
  padding: clamp(28px, 2.6vw, 48px);
  display: flex;
  flex-direction: column;
}
.layer-card__num {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 5.5vw, 80px);
  line-height: 1;
  color: rgba(41, 87, 59, 0.2);
  margin-bottom: 14px;
}

.layer-card__tag { display: none; }

.layer-card__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.1;
  color: #000000;
  margin-bottom: 16px;
}
.layer-card__specs {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: #000000;
  margin-bottom: 16px;
}
.layer-card__text {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 24px;
}

.layer-card__benefits {
  background: #1C1C1C;
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: auto;
}
.layer-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
}
.layer-benefit__icon {
  width: 37.5px;
  height: 37.5px;
  flex-shrink: 0;
}

.layer-benefit__icon--brown { display: none; }
.layer-benefit span {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #FFFFFF;
}

.layer-card__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 16px;
}
.layer-card__note-line {
  width: 3px;
  height: 21px;
  background: #4B6656;
  flex-shrink: 0;
}
.layer-card__note-text {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 1;
  color: #000000;
}

.layer-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 352px;
  max-width: 100%;
  height: 55px;
  border-radius: 10px;
  border: 1px solid #4B6656;
  color: #4B6656;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: background .2s ease;
}
.layer-card__btn:hover { background: rgba(75, 102, 86, .08); }

.calc {
  background: #F7F5F2;
  padding: 0 0 70px;
}

.calc .container {
  padding: 0 calc(clamp(16px, 3vw, 40px) + clamp(16px, 1.6vw, 24px));
}

.calc__card {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(101.31deg, #000000 2.79%, #6B6B6B 54.15%, #292F2C 100.79%);
  padding: clamp(32px, 3.5vw, 50px) clamp(32px, 4vw, 60px);
  overflow: hidden;
}

.calc__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 14px;
}
.calc__title-tablet { display: none; }

.calc__subtitle {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.calc__body {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
}

.calc__options {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 18px 28px;
  flex: 0 1 580px;
  min-width: 0;
}
.calc-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  cursor: pointer;
}
.calc-option__input { position: absolute; opacity: 0; pointer-events: none; }
.calc-option--locked { cursor: default; }

.calc-option__box {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1.5px solid #C4C4C4;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}
.calc-option__check {
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity .15s ease;
}
.calc-option__input:checked + .calc-option__box {
  background: #27563A;
  border-color: #27563A;
}
.calc-option__input:checked + .calc-option__box .calc-option__check { opacity: 1; }

.calc-option__label {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #000000;
  flex: 1;
}
.calc-option__price {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #27563A;
  white-space: nowrap;
  flex-shrink: 0;
}

.calc__total {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 358px;
}
.calc__total-sum {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.calc__total-label {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.calc__total-value {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  background: #E0CAA6;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #000000;
  white-space: nowrap;
  margin-bottom: 14px;
}
.calc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 358px;
  max-width: 100%;
  height: 55px;
  border-radius: 10px;
  background: #4B6656;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25) inset;
  color: #FFFFFF;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: background .2s ease;
}
.calc__btn:hover { background: #3c5446; }
.calc__btn-tablet { display: none; }

.built {
  background: #F7F5F2;
  padding: 0 0 70px;
}
.built .container {
  padding: 0 calc(clamp(16px, 3vw, 40px) + clamp(16px, 1.6vw, 24px));
}

.built__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.15;
  color: #000000;
  margin-bottom: 32px;
}
.built__title-full span { color: #29573B; }
.built__title-tablet { display: none; }

.built__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 20px);
  margin-bottom: clamp(16px, 1.6vw, 20px);
}
.built-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 380 / 504;
}
.built-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  object-position: right center;
}

.built-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180.56deg, rgba(255, 255, 255, 0) 0.42%, rgba(0, 0, 0, 0.4) 88.25%);
  pointer-events: none;
}
.built-card__caption {
  position: absolute;
  left: clamp(16px, 1.6vw, 24px);
  bottom: clamp(16px, 1.6vw, 24px);
  z-index: 2;
}
.built-card__region {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.built-card__meta {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1;
  color: #E6E6E6;
}

.built__cta {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  border-radius: 10px;
  background: linear-gradient(91.75deg, #000000 0%, #6B6B6B 48.57%, #111111 99.05%);
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3.5vw, 50px);
}
.built__cta-text {
  flex: 1;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.25;
  color: #FFFFFF;
}
.built__cta-text-full span { color: #288E62; }
.built__cta-text-tablet { display: none; }

.built__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 268px;
  height: 70px;
  border-radius: 10px;
  background: #4B6656;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25) inset;
  color: #FFFFFF;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: background .2s ease;
}
.built__cta-btn:hover { background: #3c5446; }
.built__cta-btn-tablet { display: none; }

.mortgage {
  background: #F7F5F2;
  padding: 0 0 70px;
}
.mortgage .container {
  padding: 0 calc(clamp(16px, 3vw, 40px) + clamp(16px, 1.6vw, 24px));
}

.mortgage__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.15;
  color: #000000;
  margin-bottom: 32px;
}
.mortgage__title span { color: #29573B; }

.mortgage__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 2.6vw, 40px);
  align-items: start;
}

.mortgage__controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mort-field {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 12px 16px;
}
.mort-field--slider { padding-bottom: 18px; }
.mort-field__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mort-field__label {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #000000;
}
.mort-field__value {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.mort-input {
  width: 2.5ch;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-align: right;
  border-bottom: 1px dashed transparent;
  transition: border-color .15s ease;
}
.mort-input:hover { border-bottom-color: #c4c4c4; }
.mort-input:focus {
  outline: none;
  border-bottom-color: #29573B;
}

.mort-input::-webkit-outer-spin-button,
.mort-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.mort-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 1px;
  margin-top: 16px;
  background: #6B6B6B;
  cursor: pointer;
}
.mort-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #29573B;
  cursor: pointer;
  margin-top: 0;
}
.mort-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: #29573B;
  cursor: pointer;
}

/* --- вкладки программ ипотеки (карточки-табы) --- */
.mort-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  padding: 6px;
  border-radius: 12px;
  background: #ECEBE6;
}
.mort-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px 12px;
  border-radius: 9px;
  background: transparent;
  transition: background .2s ease, box-shadow .2s ease;
}
.mort-tab__icon {
  width: 24px;
  height: 24px;
  color: #9a9a9a;
  transition: color .2s ease;
}
.mort-tab__name {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  color: #6B6B6B;
  white-space: nowrap;
  transition: color .2s ease;
}
.mort-tab__rate {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: #9a9a9a;
  transition: color .2s ease;
}
.mort-tab:hover:not(.is-active) .mort-tab__name { color: #29573B; }
.mort-tab:hover:not(.is-active) .mort-tab__icon { color: #29573B; }

.mort-tab.is-active {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.mort-tab.is-active .mort-tab__icon { color: #4B6656; }
.mort-tab.is-active .mort-tab__name { color: #29573B; }
.mort-tab.is-active .mort-tab__rate { color: #4B6656; }

.mortgage__result {
  background: #292F2C;
  border-radius: 14px;
  padding: clamp(28px, 2.8vw, 40px);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mort-result__label {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}
.mort-result__payment {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 28px;
}
.mort-result__unit {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.mort-result__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: auto;
}
.mort-result__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.mort-result__key {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.6);
}
.mort-result__val {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #FFFFFF;
  white-space: nowrap;
}
.mort-result__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 428px;
  max-width: 100%;
  height: 55px;
  margin-top: 32px;
  border-radius: 10px;
  border: 1px solid #4B6656;
  color: #FFFFFF;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: background .2s ease;
}
.mort-result__btn:hover { background: rgba(75, 102, 86, .25); }

.reasons {
  background: #F7F5F2;
  padding: 0 0 70px;
}
.reasons .container {
  padding: 0 calc(clamp(16px, 3vw, 40px) + clamp(16px, 1.6vw, 24px));
}

.reasons__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.15;
  color: #000000;
  text-align: center;
  margin-bottom: 36px;
}
.reasons__title-full span { color: #094923; }
.reasons__title-tablet { display: none; }

.reasons__subtitle { display: none; }

.reasons__slider { position: relative; }

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 20px);
}

.reason-card {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.reason-card__img {
  width: 100%;
  aspect-ratio: 280 / 229;
  object-fit: cover;
}

.reason-card:nth-child(5) .reason-card__img {
  object-position: right center;
}
.reason-card__img--contain {
  object-fit: contain;
  background: #fff;
}
.reason-card__body {
  position: relative;
  padding: 20px;
  overflow: hidden;
  flex: 1;
}

.reason-card__num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 200px;
  line-height: 1;
  color: rgba(41, 87, 59, 0.06);
  pointer-events: none;
  z-index: 0;
}
.reason-card__title {
  position: relative;
  z-index: 1;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  margin-bottom: 14px;
}
.reason-card__text {
  position: relative;
  z-index: 1;
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #6B6B6B;
}

.reasons__controls { display: none; }

.reasons__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 358px;
  max-width: 100%;
  height: 70px;
  margin: 40px auto 0;
  border-radius: 10px;
  background: #4B6656;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25) inset;
  color: #FFFFFF;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: background .2s ease;
}
.reasons__btn:hover { background: #3c5446; }

.life {
  background: #F7F5F2;
  padding: 0 0 70px;
}
.life .container {
  padding: 0 calc(clamp(16px, 3vw, 40px) + clamp(16px, 1.6vw, 24px));
}

.life__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.15;
  color: #000000;
  margin-bottom: 16px;
}
.life__title-full span { color: #29573B; }
.life__title-tablet { display: none; }

.life__subtitle {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #000000;
  max-width: 760px;
  margin-bottom: 32px;
}

.life__subtitle--bottom { display: none; }

.life__slider { position: relative; }

.life__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.6vw, 20px);
}
.life-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 580 / 398;
}
.life-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.life-card__tag {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  height: 41px;
  padding: 0 20px;
  border-radius: 20px;
  background: #FFFFFF;
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #000000;
}

.life__controls { display: none; }

.clients {
  background: #F7F5F2;
  padding: 0 0 70px;
}
.clients .container {
  padding: 0 calc(clamp(16px, 3vw, 40px) + clamp(16px, 1.6vw, 24px));
}

.clients__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.15;
  color: #000000;
  margin-bottom: 32px;
}
.clients__title-full span { color: #29573B; }
.clients__title-tablet { display: none; }

.clients__slider { position: relative; }

.clients__grid {
  display: grid;
  grid-template-columns: 480fr 330fr 330fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(16px, 1.6vw, 20px);
}
.client-card {
  border-radius: 12px;
  overflow: hidden;
}
.client-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients__grid .client-card:not(.client-card--big) {
  aspect-ratio: 330 / 308;
}

.client-card--big {
  grid-row: 1 / 3;
  border-radius: 14px;
  height: 100%;
}

.clients__controls { display: none; }

.clients__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  max-width: 100%;
  height: 70px;
  margin: 40px auto 0;
  border-radius: 10px;
  background: #4B6656;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25) inset;
  color: #FFFFFF;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: background .2s ease;
}
.clients__btn:hover { background: #3c5446; }

.stages {
  background: #F7F5F2;
  padding: 0 20px 70px;
}

.stages .container { padding: 0; }

.stages__card {
  background: #292F2C;
  border-radius: 30px;
  
  padding: clamp(36px, 4vw, 56px) calc(clamp(16px, 3vw, 40px) + clamp(16px, 1.6vw, 24px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "title  title"
    "main   road"
    "main   detail";
  grid-template-rows: auto auto 1fr;
  column-gap: clamp(32px, 4vw, 64px);
  row-gap: 28px;
}

.stages__detail { grid-area: detail; }
.stages__title {
  grid-area: title;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.15;
  color: #FFFFFF;
  max-width: 560px;
}
.stages__title-tablet { display: none; }

.stages__main {
  grid-area: main / main / detail / main;
  grid-row: 2 / 4;
  display: flex;
  flex-direction: column;
}
.stages__photo {
  width: 100%;
  aspect-ratio: 679 / 379;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 24px;
}
.stages__big {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 9.7vw, 140px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}

.stages__tag { display: none; }
.stages__name {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.stages__desc {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
  max-width: 460px;
  margin-bottom: 24px;
}
.stages__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 377px;
  max-width: 100%;
  height: 55px;
  border-radius: 10px;
  border: 1px solid #4B6656;
  background: #F7F5F2;
  color: #4B6656;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: background .2s ease;
}
.stages__btn:hover { background: #fff; }
.stages__btn-tablet { display: none; }

.stages__road {
  grid-area: road;
  display: flex;
  flex-direction: column;
  position: relative;
}
.stage-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.stage-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: calc(50% + 20px);
  height: calc(100% - 40px);
  width: 2px;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.stage-step__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  background: #292F2C;
  box-sizing: border-box;
  transition: background .2s ease, border-color .2s ease;
}
.stage-step.is-active .stage-step__dot {
  background: #3FBF7F;
  border-color: #3FBF7F;
}
.stage-step__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.stage-step__name {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #FFFFFF;
  transition: color .2s ease;
}
.stage-step__day {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  transition: color .2s ease;
}
.stage-step.is-active .stage-step__name,
.stage-step.is-active .stage-step__day { color: #3FBF7F; }
.stage-step__num {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: rgba(255, 249, 249, 0.5);
}

.faq {
  background: #F7F5F2;
  padding: 0 0 70px;
}
.faq .container {
  padding: 0 calc(clamp(16px, 3vw, 40px) + clamp(16px, 1.6vw, 24px));
}

.faq__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.15;
  color: #000000;
  margin-bottom: 32px;
}
.faq__title-full span { color: #29573B; }
.faq__title-tablet { display: none; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}
.faq-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
  background: none;
  text-align: left;
  cursor: pointer;
}
.faq-item__q {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #000000;
}

.faq-item__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-right: 2px solid #6B6B6B;
  border-bottom: 2px solid #6B6B6B;
  transform: rotate(45deg);
  transition: transform .25s ease;
  margin-top: -4px;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.is-open .faq-item__body { grid-template-rows: 1fr; }
.faq-item__content {
  min-height: 0;
  overflow: hidden;
  padding: 0 28px;
}
.faq-item.is-open .faq-item__content { padding-bottom: 26px; }
.faq-item__body p,
.faq-item__body li {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
.faq-item__body ul {
  list-style: disc;
  padding-left: 22px;
  margin-top: 8px;
}
.faq-item__body li { margin-bottom: 4px; }

.cta {
  background: #F7F5F2;
  padding: 0 0 80px;
}
.cta .container {
  padding: 0 calc(clamp(16px, 3vw, 40px) + clamp(16px, 1.6vw, 24px));
}
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "left form"
    "left bonus";
  grid-template-rows: auto auto;
  column-gap: clamp(32px, 4vw, 56px);
  row-gap: clamp(16px, 1.6vw, 20px);
  align-items: start;
}
.cta__left { grid-area: left; }
.cta__form { grid-area: form; }
.cta__bonus { grid-area: bonus; }

.cta__photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 577 / 153;
  margin-bottom: 28px;
  background: #27563A;
}
.cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  object-position: center bottom;
  
  opacity: 0.8;
  mix-blend-mode: luminosity;
}
.cta__label { display: none; }

.cta__title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.1;
  color: #000000;
  margin-bottom: 24px;
}
.cta__title-full span { color: #29573B; }
.cta__title-tablet { display: none; }

.cta__note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.cta__note-line {
  width: 2px;
  height: 62px;
  background: #29573B;
  flex-shrink: 0;
}
.cta__note-text {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: #000000;
  max-width: 460px;
}

.cta__bonus {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  background: #E0CAA6;
  padding: 12px 16px;
  max-width: 562px;
}
.cta__bonus-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.cta__bonus-text {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  line-height: 1.35;
  color: #000000;
}

.cta__form {
  background: #292F2C;
  border: 1px solid #000000;
  border-radius: 12px;
  padding: clamp(28px, 2.8vw, 40px);
}
.cta__form-title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 14px;
}
.cta__form-sub {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 249, 249, 0.5);
  margin-bottom: 24px;
}
.cta__form-input {
  display: block;
  width: 100%;
  height: 70px;
  border-radius: 10px;
  border: 1px solid #C7C7C7;
  background: transparent;
  color: #FFFFFF;
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 0 24px;
  margin-bottom: 16px;
}
.cta__form-input::placeholder { color: rgba(255, 255, 255, 0.6); }
.cta__form-input.input-error { border-color: #e0534d; }
.cta__form-btn {
  width: 100%;
  height: 53px;
  border-radius: 10px;
  background: #4B6656;
  color: #FFFFFF;
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 20px;
  transition: background .2s ease;
}
.cta__form-btn:hover { background: #3c5446; }
.cta__form-policy {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
}
.cta__form-policy a { text-decoration: underline; }

.footer {
  background: #F7F5F2;
  padding: 0 20px 20px;
}
.footer__card {
  background: #4B6656;
  border-radius: 20px;
  max-width: 1440px;
  margin: 0 auto;
  color: #FFFFFF;
}
.footer__inner {
  padding: clamp(32px, 3vw, 44px) calc(clamp(16px, 3vw, 40px) + clamp(16px, 1.6vw, 24px));
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: 32px;
}

.footer__logo img { width: 105px; height: 85px; }
.footer__about {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
  margin-top: 20px;
  max-width: 340px;
}

.footer__col {
  display: flex;
  flex-direction: column;
}
.footer__col-title {
  font-family: 'Evolventa', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.footer__link,
.footer__text {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 18px;
}
.footer__link { text-decoration: underline; width: fit-content; }
.footer__link:hover { opacity: .8; }
.footer__text { margin-bottom: 18px; }

.footer__divider {
  display: block;
  height: 1px;
  background: #EFEFEF;
  margin-bottom: 24px;
}
.footer__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__copy {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
}
.footer__policy {
  font-family: 'Evolventa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  text-decoration: underline;
}
.footer__policy:hover { opacity: .8; }

@media (max-width: 1024px) {
  .features { display: none; }
  .interior { display: none; }

  .layout { padding: 40px 0; }
  .layout .container { padding: 0 41px; }

  .layout__title--full { display: none; }
  .layout__title--tablet {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    margin-bottom: 32px;
  }
  .layout__title--tablet span { color: #288E62; }

  .layout__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }

  .layout__info { display: block; order: 2; }
  .layout__subtitle,
  .layout__desc,
  .layout__info-box,
  .layout__note,
  .layout__btns { grid-column: auto; grid-row: auto; }
  .layout__slider { order: 1; display: block; grid-column: auto; grid-row: auto; align-self: start; }

  .layout__controls {
    display: flex;
    margin-top: 28px;
    gap: 20px;
  }
  .layout__arrow { width: 48px; height: 48px; }
  .layout__slider-track { aspect-ratio: 292 / 219.5; margin-bottom: 0; min-height: 0; }
  .layout__slide { border-radius: 8px; }

  .layout__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 12px;
  }
  .layout__desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #6B6B6B;
    white-space: normal;
    margin-bottom: 20px;
  }

  .layout__top-specs {
    border: none;
    border-bottom: 1px solid #6B6B6B;
    border-radius: 0;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
  .top-spec { padding: 0; gap: 8px; }
  .top-spec:not(:last-child) { border-right: none; }
  
  .top-spec:not(:last-child)::after,
  .layout__top-specs > .top-spec:first-child::before,
  .layout__top-specs > .top-spec:last-child::before { display: none; }
  .top-spec__label {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
  }
  .top-spec__value {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000;
  }

  .layout__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border: none;
    border-radius: 0;
    margin-bottom: 24px;
    background: none;
  }
  
  .layout__specs::before,
  .layout__specs::after,
  .layout-spec:nth-child(4)::before { display: none; }
  .layout-spec {
    border: none;
    background: #F0F0EC;
    border-radius: 16px;
    padding: 14px 20px;
    gap: 8px;
  }
  .layout-spec__label {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgba(107, 107, 107, .73);
  }
  .layout-spec__value {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
  }

  .layout__note { display: none; }

  .layout__btns { flex-direction: column; gap: 16px; }
  .layout__btn-primary,
  .layout__btn-outline { display: none; }
  .layout__btn-primary--tablet {
    display: inline-flex;
    width: 234px;
    max-width: 100%;
    height: 53px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
  }
  .layout__btn-outline--tablet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 236px;
    max-width: 100%;
    height: 53px;
    border-radius: 10px;
    border: 1px solid #4B6656;
    color: #4B6656;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
  }

  .layout-form { display: none; }

  .construction { padding: 0 0 40px; }
  .construction .container { padding: 0 41px; }
  .construction__card {
    background: none;
    border-radius: 0;
    padding: 0;
    overflow: visible;
  }

  .construction__title { text-align: center; margin-bottom: 24px; }
  .construction__title-full { display: none; }
  .construction__title-tablet {
    display: inline;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #000000;
  }
  .construction__title-tablet span { color: #288E62; }

  .construction__subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #6B6B6B;
    max-width: none;
    text-align: left;
    margin-bottom: 28px;
  }

  .construction__grid {
    grid-template-columns: 319fr 380fr;
    gap: 32px;
    align-items: start;
  }
  .construction__photo {
    aspect-ratio: 319 / 574;
  }

  .construction__info {
    background: none;
    border-radius: 0;
    padding: 0;
  }
  
  .layer-card__num { display: none; }
  .layer-card__tag {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: #288E62;
    margin-bottom: 12px;
  }
  .layer-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 12px;
  }
  .layer-card__specs {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #6B6B6B;
    margin-bottom: 14px;
  }
  .layer-card__text {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.45;
    color: #000000;
    margin-bottom: 20px;
  }

  .layer-card__benefits {
    background: none;
    border-radius: 0;
    padding: 0;
    gap: 18px;
    margin-bottom: 20px;
  }
  .layer-benefit__icon { width: 40px; height: 40px; }
  
  .layer-benefit__icon--green { display: none; }
  .layer-benefit__icon--brown { display: block; }
  .layer-benefit span {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
  }

  .layer-card__note { display: none; }

  .layer-card__btn {
    width: 347px;
    height: 53px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
  }

  .construction__hint {
    display: block;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: #6B6B6B;
    margin-top: 32px;
  }

  .layer-dot {
    width: 18px;
    height: 18px;
    top: var(--t-top) !important;
    left: var(--t-left) !important;
  }
  .layer-dot::after { width: 10px; height: 10px; }

  .calc { padding: 0 0 40px; }
  .calc .container { padding: 0 41px; }
  .calc__card {
    background: #FFFFFF;
    border: 0.62px dashed #288E62;
    border-radius: 6.2px;
    padding: 40px 48px;
    overflow: visible;
  }

  .calc__title { text-align: center; margin-bottom: 16px; }
  .calc__title-full { display: none; }
  .calc__title-tablet {
    display: inline;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #000000;
  }
  .calc__subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #6B6B6B;
    text-align: center;
    max-width: 480px;
    margin: 0 auto 28px;
  }

  .calc__body {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .calc__options {
    background: none;
    border-radius: 0;
    padding: 0;
    flex: 0 1 auto;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
  
  .calc-option {
    align-items: flex-start;
    gap: 16px;
    padding: 10px 0;
  }
  .calc-option__box {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    margin-top: 2px;
  }
  .calc-option__label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
  }
  
  .calc-option__price {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #288E62;
  }

  .calc__total {
    flex: 0 1 auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
  .calc__total-label {
    font-family: 'Playfair Display', 'Evolventa', serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 4px;
  }
  .calc__total-value {
    display: block;
    height: auto;
    padding: 0;
    background: none;
    border-radius: 0;
    font-family: 'Playfair Display', 'Evolventa', serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    color: #288E62;
    margin-bottom: 0;
  }
  .calc__btn {
    width: 294px;
    height: 53px;
    box-shadow: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
  }
  .calc__btn-full { display: none; }
  .calc__btn-tablet { display: inline; }

  .built { padding: 0 0 40px; }
  .built .container { padding: 0 41px; }

  .built__title { text-align: center; margin-bottom: 28px; }
  .built__title-full { display: none; }
  .built__title-tablet {
    display: inline;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #000000;
  }
  .built__title-tablet span { color: #288E62; }

  .built__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }
  .built-card { aspect-ratio: 1 / 1; }
  
  .built-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 8px);
  }

  .built__cta {
    gap: 32px;
    padding: 36px 40px;
  }
  .built__cta-text-full { display: none; }
  .built__cta-text-tablet {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
  }
  .built__cta-text-tablet span { color: #288E62; }

  .built__cta-btn {
    width: 230px;
    height: 83px;
    background: transparent;
    border: 1.5px solid #EFEFEF;
    box-shadow: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
  }
  .built__cta-btn:hover { background: rgba(255, 255, 255, .08); }
  .built__cta-btn-full { display: none; }
  .built__cta-btn-tablet { display: inline; }

  .mortgage { padding: 0 0 40px; }
  .mortgage .container { padding: 0 41px; }
  .mortgage__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 28px;
  }
  .mortgage__title span { color: #288E62; }

  .mortgage__body {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .mort-field {
    background: none;
    border-radius: 0;
    padding: 0 0 16px;
  }
  .mort-field--slider { padding-bottom: 16px; }
  .mort-field__label {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #6B6B6B;
  }
  .mort-field__value {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
  }
  
  .mort-slider { margin-top: 12px; }

  .mort-tab__name { font-family: 'Manrope', sans-serif; font-size: 14px; }
  .mort-tab__rate { font-family: 'Manrope', sans-serif; }

  .mortgage__result { padding: 32px; }
  .mort-result__label { font-family: 'Manrope', sans-serif; }
  .mort-result__payment { font-family: 'Manrope', sans-serif; font-weight: 700; }
  .mort-result__key,
  .mort-result__val { font-family: 'Manrope', sans-serif; }
  .mort-result__btn {
    width: 100%;
    font-family: 'Manrope', sans-serif;
  }

  .reasons { padding: 0 0 40px; }
  .reasons .container { padding: 0 41px; }

  .reasons__title { margin-bottom: 28px; }
  .reasons__title-full { display: none; }
  .reasons__title-tablet {
    display: inline;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #000000;
  }
  .reasons__title-tablet span { color: #288E62; }

  .reasons__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .life { padding: 0 0 40px; }
  .life .container { padding: 0 41px; }

  .life__title { text-align: center; margin-bottom: 28px; }
  .life__title-full { display: none; }
  .life__title-tablet {
    display: inline;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #000000;
  }
  .life__title-tablet span { color: #288E62; }

  .life__subtitle--top { display: none; }

  .life__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .life__subtitle--bottom {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
    color: #000000;
    max-width: none;
    text-align: center;
    margin: 24px auto 0;
  }

  .clients { padding: 0 0 40px; }
  .clients .container { padding: 0 41px; }

  .clients__title { text-align: center; margin-bottom: 28px; }
  .clients__title-full { display: none; }
  .clients__title-tablet {
    display: inline;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #000000;
  }
  .clients__title-tablet span { color: #288E62; }

  .clients__grid { gap: 14px; }

  .clients__btn { display: none; }

  .stages { padding: 0 0 40px; }
  .stages .container { padding: 0 41px; }

  .stages__card {
    grid-template-columns: 305px 1fr;
    grid-template-areas:
      "title  title"
      "main   detail"
      "road   road";
    grid-template-rows: auto auto auto;
    column-gap: 32px;
    row-gap: 28px;
    padding: 40px;
  }
  .stages__title {
    text-align: center;
    max-width: none;
    justify-self: center;
  }
  .stages__title-full { display: none; }
  .stages__title-tablet {
    display: inline;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #FFFFFF;
  }
  .stages__title-tablet span { color: #288E62; }

  .stages__main {
    grid-area: main;
    grid-row: auto;
    justify-content: flex-start;
  }
  .stages__photo {
    aspect-ratio: 305 / 210;
    align-self: start;
    margin-bottom: 0;
  }
  
  .stages__detail { grid-area: detail; }
  
  .stages__big { display: none; }
  .stages__tag {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: #288E62;
    margin-bottom: 16px;
  }
  .stages__name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 16px;
  }
  .stages__desc {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .stages__btn {
    width: 100%;
    background: #F7F5F2;
    font-family: 'Manrope', sans-serif;
  }
  .stages__btn-full { display: none; }
  .stages__btn-tablet { display: inline; }

  .stages__road {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }
  .stage-step {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 6px;
    text-align: center;
    min-width: 0;
  }
  
  .stage-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: calc(50% + 12px);
    top: 10px;
    height: 2px;
    width: calc(100% - 24px);
    background: #6B6B6B;
    pointer-events: none;
  }
  .stage-step__dot {
    width: 20px;
    height: 20px;
    border-color: #288E62;
    order: 1;
  }
  .stage-step.is-active .stage-step__dot {
    background: #288E62;
    border-color: #288E62;
  }
  
  .stage-step__num {
    order: 2;
    font-size: 18px;
    line-height: 1;
    color: #288E62;
  }
  .stage-step__info {
    order: 3;
    align-items: center;
    gap: 6px;
  }
  .stage-step__name {
    font-size: 14px;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
  }
  .stage-step__day { font-size: 13px; white-space: nowrap; }
  
  .stage-step.is-active .stage-step__name,
  .stage-step.is-active .stage-step__day { color: #FFFFFF; }

  .faq { padding: 0 0 40px; }
  .faq .container { padding: 0 41px; }

  .faq__title { text-align: center; margin-bottom: 28px; }
  .faq__title-full { display: none; }
  .faq__title-tablet {
    display: inline;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #000000;
  }
  .faq__title-tablet span { color: #288E62; }

  .faq__list { gap: 0; }
  .faq-item {
    background: none;
    border-radius: 0;
    border-top: 1px solid #6B6B6B;
  }
  .faq-item:last-child { border-bottom: 1px solid #6B6B6B; }
  .faq-item__head {
    padding: 20px 0;
    gap: 16px;
  }
  .faq-item__q {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
  }

  .faq-item__icon {
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid #6B6B6B;
    border-radius: 50%;
    transform: none;
    margin: 0;
  }
  
  .faq-item__icon::before,
  .faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #6B6B6B;
    transition: opacity .2s ease;
  }
  .faq-item__icon::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
  }
  .faq-item__icon::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
  }
  
  .faq-item.is-open .faq-item__icon::after { opacity: 0; }
  .faq-item.is-open .faq-item__icon { transform: none; }

  .faq-item__content { padding: 0; }
  .faq-item.is-open .faq-item__content { padding-bottom: 20px; }
  .faq-item__body p,
  .faq-item__body li {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
  }

  .cta { padding: 0 0 40px; background: #F7F5F2; }
  .cta .container { padding: 0 41px; }

  .cta__grid {
    grid-template-columns: 0.78fr 1fr;
    grid-template-areas:
      "left  form"
      "bonus form";
    grid-template-rows: auto 1fr;
    background: #292F2C;
    border-radius: 14px;
    padding: 40px;
    column-gap: 40px;
    row-gap: 28px;
    align-items: start;
  }

  .cta__photo { display: none; }

  .cta__left { grid-area: left; display: flex; flex-direction: column; }
  
  .cta__label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #288E62;
    margin-bottom: 20px;
  }
  .cta__title { margin-bottom: 20px; }
  .cta__title-full { display: none; }
  .cta__title-tablet {
    display: inline;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: #FFFFFF;
  }
  .cta__title-tablet span { color: #288E62; }

  .cta__note { margin-bottom: 28px; }
  .cta__note-line { display: none; }
  .cta__note-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.45;
    color: #FFFFFF;
    max-width: 240px;
  }

  .cta__bonus {
    grid-area: bonus;
    align-self: start;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: none;
    border: 1px dashed #FFFFFF;
    border-radius: 0;
    padding: 24px;
    max-width: 212px;
  }
  .cta__bonus-icon { display: none; }
  .cta__bonus-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 1.5;
    color: #FFFFFF;
  }

  .cta__form {
    grid-area: form;
    background: #F7F5F2;
    border: none;
  }
  .cta__bonus { grid-row: 2; }
  .cta__form { grid-row: 1 / 3; }
  .cta__form-title {
    font-family: 'Playfair Display', 'Evolventa', serif;
    color: #000000;
  }
  .cta__form-sub { color: #6B6B6B; }
  .cta__form-input {
    border-color: #C7C7C7;
    color: #000000;
    background: transparent;
  }
  .cta__form-input::placeholder { color: #000000; opacity: .7; }
  .cta__form-policy { color: #000000; }

  .footer { padding: 0; }
  .footer__card {
    border-radius: 0;
    max-width: none;
  }
  .footer__inner { padding: 40px 41px; }

  .footer__top {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 24px;
  }
  .footer__about { margin-top: 16px; }
  .footer__col-title { margin-bottom: 16px; }
  .footer__link,
  .footer__text { margin-bottom: 14px; }
}

@media (max-width: 768px) {
  .features {
    display: block;
    padding: 32px 0;
  }
  .features .container { padding: 0 18px; }
  .features__title--desktop { display: none; }
  .features__title--mobile {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  .features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .feature-card { min-height: 150px; padding: 14px 16px 16px; }
  .feature-card__icon { width: 44px; height: 44px; }
  .feature-card__label { font-size: 13px; }
  .feature-card__value { font-size: 32px; }
  .feature-card__value span { font-size: 13px; }

  .interior { display: none; }

  .layout { padding: 28px 0; }
  .layout .container { padding: 0 18px; }

  .layout__title--tablet { display: none; }
  .layout__title--full {
    display: block;
    font-size: 24px;
    text-align: left;
    margin-bottom: 20px;
  }

  .layout__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .layout__info { display: block; order: 2; }
  .layout__subtitle,
  .layout__desc,
  .layout__info-box,
  .layout__note,
  .layout__btns { grid-column: auto; grid-row: auto; }
  .layout__slider { order: 1; display: block; grid-column: auto; grid-row: auto; align-self: start; }

  .layout__controls {
    display: flex;
    margin-top: 24px;
    gap: 18px;
  }
  .layout__arrow { width: 46px; height: 46px; }
  .layout__slider-track { aspect-ratio: 340 / 235; margin-bottom: 0; min-height: 0; }
  .layout__slide { border-radius: 8px; }

  .layout__info { background: none; padding: 0; }
  .layout__info-box {
    background: #E0CAA6;
    border-radius: 8px;
    padding: 18px;
  }
  .layout__subtitle {
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;
  }
  .layout__desc {
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #000;
    white-space: normal;
    margin-bottom: 16px;
  }

  .layout__top-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 12px;
  }
  .top-spec {
    background: #fff;
    border-radius: 6px;
    padding: 8px 10px;
    gap: 6px;
  }
  .top-spec:not(:last-child) { border-right: none; }
  
  .top-spec:not(:last-child)::after,
  .layout__top-specs > .top-spec:first-child::before,
  .layout__top-specs > .top-spec:last-child::before { display: none; }
  .top-spec__label {
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #6B6B6B;
  }
  .top-spec__value {
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #000;
  }

  .layout__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    background: none;
  }
  
  .layout__specs::before,
  .layout__specs::after,
  .layout-spec:nth-child(4)::before { display: none; }
  .layout-spec {
    border: none;
    background: #F0F0EC;
    border-radius: 6px;
    padding: 12px 16px;
    gap: 6px;
  }
  .layout-spec__label {
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(107, 107, 107, .73);
  }
  .layout-spec__value {
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000;
  }

  .layout__note {
    display: flex;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .layout__note-line { height: 21px; width: 2px; }
  .layout__note-text {
    font-size: 12px;
    font-style: italic;
  }

  .layout__btns { flex-direction: column; gap: 12px; }
  
  .layout__btn-primary {
    display: inline-flex;
    width: 100%;
    height: 55px;
    font-size: 14px;
  }
  .layout__btn-outline {
    display: inline-flex;
    width: 100%;
    height: 55px;
    font-size: 14px;
    background: transparent;
    border: 1px solid #4B6656;
    color: #4B6656;
    box-shadow: none;
  }
  .layout__btn-primary--tablet,
  .layout__btn-outline--tablet { display: none; }

  .layout-form { display: none; }

  .construction { padding: 0 0 28px; }
  .construction .container { padding: 0 18px; }
  .construction__card {
    background: #27563A;
    border-radius: 20px;
    padding: 24px 18px 28px;
    overflow: hidden;
  }

  .construction__title { text-align: left; margin-bottom: 14px; }
  .construction__title-tablet { display: none; }
  .construction__title-full {
    display: block;
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    color: #FFFFFF;
  }

  .construction__subtitle {
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.35;
    color: #E6E6E6;
    text-align: left;
    margin-bottom: 20px;
  }

  .construction__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .construction__photo {
    order: 1;
    aspect-ratio: 280 / 320;
  }
  .construction__info {
    order: 2;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 24px 20px;
  }

  .layer-card__num {
    display: block;
    font-size: 56px;
    color: rgba(41, 87, 59, 0.2);
    margin-bottom: 10px;
  }
  .layer-card__tag { display: none; }

  .layer-card__title {
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #000000;
    margin-bottom: 12px;
  }
  .layer-card__specs {
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 14px;
  }
  .layer-card__text {
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
    color: #000000;
    margin-bottom: 20px;
  }

  .layer-card__benefits {
    background: #1C1C1C;
    border-radius: 12px;
    padding: 20px;
    gap: 18px;
    margin-bottom: 20px;
  }
  .layer-benefit__icon { width: 32px; height: 32px; }
  
  .layer-benefit__icon--green { display: block; }
  .layer-benefit__icon--brown { display: none; }
  .layer-benefit span {
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
  }

  .layer-card__note {
    display: flex;
    margin-top: 20px;
    margin-bottom: 14px;
  }
  .layer-card__note-text {
    font-size: 14px;
    font-style: italic;
  }

  .layer-card__btn {
    width: 100%;
    height: 53px;
    font-size: 14px;
  }

  .construction__hint { display: none; }

  .layer-dot {
    width: 18px;
    height: 18px;
    top: var(--m-top) !important;
    left: var(--m-left) !important;
  }
  .layer-dot::after { width: 10px; height: 10px; }

  .calc { padding: 0 0 28px; }
  .calc .container { padding: 0 18px; }
  .calc__card {
    background: linear-gradient(160deg, #000000 0%, #2b2f2c 60%, #1a1c1a 100%);
    border: none;
    border-radius: 14px;
    padding: 24px 18px 28px;
    overflow: hidden;
  }

  .calc__title { text-align: left; margin-bottom: 12px; }
  .calc__title-tablet { display: none; }
  .calc__title-full {
    display: block;
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    color: #FFFFFF;
  }
  
  .calc__subtitle {
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.35;
    color: #E6E6E6;
    text-align: left;
    max-width: none;
    margin: 0 0 22px;
  }

  .calc__body {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .calc__options {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 14px 18px;
    flex: 0 1 auto;
    width: 100%;
  }
  
  .calc-option {
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
  }
  .calc-option__box { width: 28px; height: 28px; margin-top: 2px; }
  .calc-option__label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
  }
  .calc-option__price {
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #27563A;
  }

  
  .calc__total {
    flex: 0 1 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .calc__total-sum { align-items: flex-start; }
  
  .calc__total-label {
    color: #FFFFFF;
    font-family: 'Evolventa', sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .calc__total-value {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: auto;
    height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    background: #E0CAA6;
    font-family: 'Evolventa', sans-serif;
    font-size: 20px;
    color: #000000;
  }
  .calc__btn {
    width: 100%;
    height: 55px;
    font-size: 14px;
  }
  .calc__btn-full { display: inline; }
  .calc__btn-tablet { display: none; }

  .built { padding: 0 0 28px; }
  .built .container { padding: 0 18px; }

  .built__title { text-align: left; margin-bottom: 20px; }
  .built__title-tablet { display: none; }
  .built__title-full {
    display: block;
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.25;
    color: #000000;
  }
  .built__title-full span { color: #29573B; }

  .built__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
  .built-card { aspect-ratio: 327 / 240; }
  
  .built-card:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }
  .built-card__region { font-size: 22px; }
  .built-card__meta { font-size: 14px; }

  .built__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 22px 20px;
  }
  .built__cta-text {
    font-size: 16px;
    line-height: 1.35;
  }
  .built__cta-text-tablet { display: none; }
  .built__cta-text-full {
    display: block;
    font-family: 'Evolventa', sans-serif;
  }
  .built__cta-btn {
    width: 100%;
    height: 53px;
    background: #4B6656;
    border: none;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25) inset;
    font-family: 'Evolventa', sans-serif;
    font-size: 14px;
  }
  .built__cta-btn-full { display: inline; }
  .built__cta-btn-tablet { display: none; }

  .mortgage { padding: 0 0 28px; }
  .mortgage .container { padding: 0 18px; }
  .mortgage__title {
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.25;
    text-align: left;
    margin-bottom: 20px;
  }
  .mortgage__title span { color: #29573B; }

  .mortgage__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mort-field {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 14px 16px;
  }
  .mort-field--slider { padding-bottom: 18px; }
  .mort-field__label {
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
  }
  .mort-field__value {
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #000000;
  }

  .mort-tabs { gap: 2px; }
  .mort-tab { padding: 10px 4px 12px; }
  .mort-tab__name { font-family: 'Evolventa', sans-serif; font-size: 13px; }
  .mort-tab__rate { font-family: 'Evolventa', sans-serif; font-size: 12px; }

  .mortgage__result { padding: 24px 20px; }
  .mort-result__label {
    font-family: 'Evolventa', sans-serif;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .mort-result__payment {
    font-family: 'Evolventa', sans-serif;
    font-size: 34px;
    margin-bottom: 20px;
  }
  .mort-result__rows { padding-top: 18px; }
  .mort-result__key,
  .mort-result__val { font-family: 'Evolventa', sans-serif; font-size: 14px; }
  .mort-result__btn {
    width: 100%;
    font-family: 'Evolventa', sans-serif;
    font-size: 14px;
  }

  .reasons { padding: 0 0 28px; }
  .reasons .container { padding: 0 18px; }

  .reasons__title { text-align: left; margin-bottom: 16px; }
  .reasons__title-tablet { display: none; }
  .reasons__title-full {
    display: block;
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: #000000;
  }
  .reasons__title-full span { color: #094923; }

  .reasons__subtitle {
    display: block;
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 1.4;
    color: #6B6B6B;
    margin-bottom: 24px;
  }

  .reasons__slider { overflow: hidden; }
  .reasons__grid {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    gap: 0;
    transition: transform .45s ease;
  }
  .reason-card {
    flex: 0 0 100%;
    width: 100%;
  }
  .reason-card__img { aspect-ratio: 343 / 220; }
  .reason-card__num { font-size: 160px; }
  .reason-card__title { font-size: 18px; }
  .reason-card__text { font-size: 16px; }

  .reasons__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
  }
  .reasons__arrow {
    width: 48px;
    height: 48px;
    border: 1px solid #288E62;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
  }
  .reasons__dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .reasons__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #cfcfcf;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
  }
  .reasons__dot.is-active { background: #288E62; border-color: #288E62; }

  .reasons__btn {
    width: 100%;
    height: 55px;
    margin-top: 28px;
    font-size: 14px;
  }

  .life { padding: 0 0 28px; }
  .life .container { padding: 0 18px; }

  .life__title { text-align: left; margin-bottom: 14px; }
  .life__title-tablet { display: none; }
  .life__title-full {
    display: block;
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: #000000;
  }
  .life__title-full span { color: #29573B; }

  .life__subtitle--bottom { display: none; }
  .life__subtitle--top {
    display: block;
    font-family: 'Evolventa', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 1.4;
    color: #6B6B6B;
    max-width: none;
    margin-bottom: 24px;
  }

  .life__slider { overflow: hidden; }
  .life__grid {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    gap: 0;
    transition: transform .45s ease;
  }
  .life-card {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 343 / 430;
  }
  .life-card__tag {
    top: 16px;
    left: 16px;
    height: 36px;
    font-size: 14px;
  }

  .life__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
  }
  .life__arrow {
    width: 48px;
    height: 48px;
    border: 1px solid #288E62;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
  }
  .life__dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .life__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #cfcfcf;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
  }
  .life__dot.is-active { background: #288E62; border-color: #288E62; }

  .clients { padding: 0 0 28px; }
  .clients .container { padding: 0 18px; }

  .clients__title { text-align: left; margin-bottom: 20px; }
  .clients__title-tablet { display: none; }
  .clients__title-full {
    display: block;
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: #000000;
  }
  .clients__title-full span { color: #29573B; }

  .clients__slider { overflow: hidden; }
  .clients__grid {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 0;
    transition: transform .45s ease;
  }
  .client-card,
  .client-card--big,
  .clients__grid .client-card:not(.client-card--big) {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    grid-row: auto;
    aspect-ratio: 343 / 420;
    border-radius: 14px;
  }

  .clients__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
  }
  .clients__arrow {
    width: 48px;
    height: 48px;
    border: 1px solid #288E62;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
  }
  .clients__dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .clients__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #cfcfcf;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
  }
  .clients__dot.is-active { background: #288E62; border-color: #288E62; }

  .clients__btn {
    display: flex;
    width: 100%;
    height: 55px;
    margin-top: 28px;
    font-size: 14px;
  }

  .stages { padding: 0 0 28px; }
  .stages .container { padding: 0 18px; }

  .stages__card {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 20px;
    padding: 24px 20px 28px;
  }
  .stages__title {
    order: 1;
    text-align: left;
    max-width: none;
    margin-bottom: 20px;
  }
  .stages__title-tablet { display: none; }
  .stages__title-full {
    display: block;
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.25;
    color: #FFFFFF;
  }

  .stages__main { display: contents; }

  .stages__photo {
    order: 2;
    aspect-ratio: 327 / 200;
    margin-bottom: 24px;
  }

  .stages__road {
    order: 3;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
  }
  
  .stage-step {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    text-align: left;
  }
  
  .stage-step:not(:last-child)::before {
    left: 14px;
    top: calc(50% + 15px);
    height: calc(100% - 30px);
    width: 2px;
    background: rgba(255, 255, 255, 0.4);
  }
  
  .stage-step__dot { width: 30px; height: 30px; order: 0; }
  .stage-step__info {
    order: 0;
    align-items: flex-start;
    gap: 6px;
  }
  .stage-step__name {
    font-size: 18px;
    white-space: normal;
    word-break: normal;
  }
  .stage-step__day { font-size: 14px; white-space: nowrap; }
  .stage-step__num { order: 0; font-size: 36px; }
  
  .stage-step.is-active .stage-step__name,
  .stage-step.is-active .stage-step__day { color: #3FBF7F; }

  .stages__big {
    order: 4;
    display: block;
    font-size: 56px;
    margin-bottom: 10px;
  }
  
  .stages__detail { order: 5; }
  .stages__tag { display: none; }
  .stages__name {
    font-family: 'Evolventa', sans-serif;
    font-size: 18px;
    margin-bottom: 12px;
  }
  .stages__desc {
    font-family: 'Evolventa', sans-serif;
    font-size: 14px;
    max-width: none;
    margin-bottom: 20px;
  }
  .stages__btn {
    width: 100%;
    font-family: 'Evolventa', sans-serif;
    font-size: 14px;
  }
  .stages__btn-full { display: inline; }
  .stages__btn-tablet { display: none; }

  .faq { padding: 0 0 28px; }
  .faq .container { padding: 0 18px; }

  .faq__title { text-align: left; margin-bottom: 20px; }
  .faq__title-tablet { display: none; }
  .faq__title-full {
    display: block;
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.25;
    color: #000000;
  }
  .faq__title-full span { color: #29573B; }

  .faq__list { gap: 14px; }
  .faq-item {
    background: #FFFFFF;
    border-radius: 8px;
    border-top: none;
  }
  .faq-item:last-child { border-bottom: none; }
  .faq-item__head { padding: 20px; gap: 16px; }
  .faq-item__q {
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 16px;
  }

  .faq-item__icon {
    width: 11px;
    height: 11px;
    border: none;
    border-right: 2px solid #6B6B6B;
    border-bottom: 2px solid #6B6B6B;
    border-radius: 0;
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .faq-item__icon::before,
  .faq-item__icon::after { display: none; }
  .faq-item.is-open .faq-item__icon {
    transform: rotate(-135deg);
    margin-top: 4px;
  }

  .faq-item__content { padding: 0 20px; }
  .faq-item.is-open .faq-item__content { padding-bottom: 20px; }
  .faq-item__body p,
  .faq-item__body li {
    font-family: 'Evolventa', sans-serif;
    font-size: 14px;
  }

  .cta { padding: 0 0 28px; }
  .cta .container { padding: 0 18px; }

  .cta__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: none;
    border-radius: 0;
    padding: 0;
  }
  .cta__left { display: contents; }

  .cta__photo {
    order: 1;
    aspect-ratio: 343 / 110;
    margin-bottom: 20px;
    background: none;
  }
  .cta__photo img { opacity: 1; mix-blend-mode: normal; }

  .cta__label { display: none; }

  .cta__title { order: 2; margin-bottom: 18px; }
  .cta__title-tablet { display: none; }
  .cta__title-full {
    display: block;
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: #000000;
  }
  .cta__title-full span { color: #29573B; }

  .cta__note { order: 3; margin-bottom: 20px; align-items: stretch; }
  .cta__note-line { display: block; width: 2px; height: auto; }
  .cta__note-text {
    font-family: 'Evolventa', sans-serif;
    font-size: 14px;
    color: #000000;
    max-width: none;
  }

  .cta__bonus {
    order: 4;
    background: #E0CAA6;
    border: none;
    border-radius: 12px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    max-width: none;
    margin-bottom: 24px;
  }
  .cta__bonus-icon { display: block; width: 44px; height: 44px; }
  .cta__bonus-text {
    font-family: 'Evolventa', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 14px;
    line-height: 1.35;
    color: #000000;
  }

  .cta__form {
    order: 5;
    background: #292F2C;
    border: 1px solid #000000;
    padding: 24px 20px;
  }
  .cta__form-title {
    font-family: 'Evolventa', sans-serif;
    color: #FFFFFF;
    font-size: 20px;
  }
  .cta__form-sub { color: rgba(255, 249, 249, 0.5); font-size: 14px; }
  .cta__form-input {
    height: 60px;
    color: #FFFFFF;
    border-color: #C7C7C7;
  }
  .cta__form-input::placeholder { color: rgba(255, 255, 255, 0.6); }
  .cta__form-policy { color: #FFFFFF; font-size: 13px; }

  .footer { padding: 0 18px 18px; }
  .footer__card { border-radius: 20px; max-width: none; }
  .footer__inner { padding: 28px 22px; }

  .footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 4%;
    margin-bottom: 24px;
  }
  
  .footer__brand {
    flex: 0 0 100%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
  }
  .footer__logo { flex-shrink: 0; }
  .footer__logo img { width: 80px; height: 65px; }
  .footer__about { margin-top: 0; font-size: 15px; }

  .footer__col:nth-of-type(1),
  .footer__col:nth-of-type(2) { flex: 0 0 48%; }
  .footer__col--office { flex: 0 0 100%; }

  .footer__col-title { font-size: 16px; margin-bottom: 16px; }
  .footer__link,
  .footer__text { margin-bottom: 16px; font-size: 15px; }

  .footer__divider { margin-bottom: 20px; }
  .footer__bottom-row {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 16px;
  }
  .footer__copy,
  .footer__policy { font-size: 15px; }
}

@media (min-width: 1500px) {
  
  .hero__content {
    padding-left: clamp(24px, 5.2vw, 100px);
    padding-right: clamp(24px, 5.2vw, 100px);
  }
  
  .header {
    padding-left: clamp(24px, 5.2vw, 100px);
    padding-right: clamp(24px, 5.2vw, 100px);
  }
  .hero__caption { left: clamp(24px, 5.2vw, 100px); }

  .hero__title-row { flex-wrap: nowrap; }

  .features .container {
    max-width: none;
    margin: 0;
    width: auto;
    padding: 0 140px;
  }
  .interior .container {
    padding-left: 140px;
    padding-right: 140px;
  }
  
  .layout .container {
    max-width: none;
    margin: 0;
    width: auto;
    padding-left: 140px;
    padding-right: 140px;
  }
  /* на широком десктопе план крупнее */
  .layout__slider-track { min-height: 620px; }

  .construction .container {
    max-width: none;
    margin: 0;
    width: auto;
    padding: 0;
  }
  .construction__card {
    padding-left: 140px;
    padding-right: 140px;
  }
  
  .calc .container {
    max-width: none;
    margin: 0;
    width: auto;
    padding-left: 140px;
    padding-right: 140px;
  }
  
  .built .container {
    max-width: none;
    margin: 0;
    width: auto;
    padding-left: 140px;
    padding-right: 140px;
  }
  
  .mortgage .container {
    max-width: none;
    margin: 0;
    width: auto;
    padding-left: 140px;
    padding-right: 140px;
  }
  
  .reasons .container {
    max-width: none;
    margin: 0;
    width: auto;
    padding-left: 140px;
    padding-right: 140px;
  }
  
  .life .container {
    max-width: none;
    margin: 0;
    width: auto;
    padding-left: 140px;
    padding-right: 140px;
  }
  
  .clients .container {
    max-width: none;
    margin: 0;
    width: auto;
    padding-left: 140px;
    padding-right: 140px;
  }
  
  .stages .container {
    max-width: none;
    margin: 0;
    width: auto;
    padding: 0;
  }
  .stages__card {
    padding-left: 140px;
    padding-right: 140px;
  }
  
  .faq .container {
    max-width: none;
    margin: 0;
    width: auto;
    padding-left: 140px;
    padding-right: 140px;
  }
  
  .cta .container {
    max-width: none;
    margin: 0;
    width: auto;
    padding-left: 140px;
    padding-right: 140px;
  }
  
  .footer__card { max-width: none; }
  .footer__inner { padding-left: 140px; padding-right: 140px; }

  .feature-card { min-height: 220px; padding: 20px 28px 24px; }
  .feature-card__icon { width: 68px; height: 68px; }
  .feature-card__label { font-size: 18px; }
  .feature-card__value { font-size: 48px; }
  .feature-card__value span { font-size: 18px; }
}

@media (min-width: 1500px) and (max-width: 1620px) {
  .hero__title { font-size: 72px; }
  .price-badge__price { font-size: 44px; }
  .hero__title-row { gap: 20px; }
}

/* ====================================================================== */
/* ============  КАЛЬКУЛЯТОР СМЕТЫ (bcalc) — новый дизайн  ============== */
/* ====================================================================== */
.bcalc{
  --cream:#F1EEE4; --ink:#1b1c19; --green:#2f5d3a; --green-tag:#4c6b50;
  --card-dark:#242a21; --white:#ffffff; --muted:#8b8b82; --muted-light:#b7b7ad;
  --line:#e8e4d8; --hover:#f6f4ec;
  font-family:'Manrope',system-ui,sans-serif;
  background:var(--cream); color:var(--ink);
  padding:48px 20px 56px;
}
.bcalc__wrap{max-width:1180px;margin:0 auto}

.bcalc__head{margin-bottom:30px;max-width:820px}
.bcalc__title{
  font-weight:800;font-size:clamp(26px,4vw,44px);
  line-height:1.05;letter-spacing:-0.02em;color:var(--ink);
}
.bcalc__title .g{color:var(--green)}
.bcalc__sub{margin-top:14px;font-size:clamp(15px,1.6vw,19px);color:#5c5c54;font-weight:500;line-height:1.4}

.bcalc__grid{display:grid;grid-template-columns:1.35fr 1fr;gap:24px;align-items:stretch}
@media(max-width:860px){.bcalc__grid{grid-template-columns:1fr}}

.bcalc__card{background:var(--white);border-radius:22px;padding:12px 14px}

.bcalc__area{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:18px 16px 20px;border-bottom:1px solid var(--line);flex-wrap:wrap;
}
.bcalc__area-lab{font-weight:700;font-size:17px}
.bcalc__area-lab small{display:block;font-weight:500;font-size:13px;color:var(--muted);margin-top:2px}
.bcalc__area-ctrl{display:flex;align-items:center;gap:16px;flex:1;min-width:220px}
.bcalc__area input[type=range]{
  -webkit-appearance:none;appearance:none;flex:1;height:2px;
  background:var(--line);border-radius:2px;
  background-image:linear-gradient(var(--green),var(--green));
  background-repeat:no-repeat;cursor:pointer;margin-top:0;
}
.bcalc__area input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:22px;height:22px;border-radius:50%;background:var(--green);border:4px solid #fff;box-shadow:0 0 0 1px var(--green);margin-top:0}
.bcalc__area input[type=range]::-moz-range-thumb{width:18px;height:18px;border-radius:50%;background:var(--green);border:4px solid #fff;box-shadow:0 0 0 1px var(--green)}
.bcalc__area-num{font-weight:800;font-size:18px;white-space:nowrap;min-width:78px;text-align:right}

.bcalc-opt{
  display:flex;align-items:flex-start;gap:16px;
  padding:16px;border-radius:14px;cursor:pointer;
  transition:background .12s;user-select:none;-webkit-user-select:none;
}
.bcalc-opt:hover{background:var(--hover)}
.bcalc-opt.base{cursor:default}
.bcalc-opt.base:hover{background:none}

.bcalc-opt .box{
  flex:0 0 auto;width:26px;height:26px;border-radius:8px;
  border:2px solid #cfcabb;background:#fff;margin-top:1px;
  display:flex;align-items:center;justify-content:center;transition:.12s;
}
.bcalc-opt.on .box{background:var(--green);border-color:var(--green)}
.bcalc-opt .box svg{width:15px;height:15px;opacity:0;transition:opacity .12s}
.bcalc-opt.on .box svg{opacity:1}

.bcalc-opt .body{flex:1;min-width:0}
.bcalc-opt .t{font-weight:700;font-size:17px;line-height:1.25}
.bcalc-opt .d{font-size:13.5px;color:var(--muted);margin-top:3px;line-height:1.35}
.bcalc-opt .badge{
  display:inline-block;font-size:11px;font-weight:700;color:var(--green);
  background:rgba(47,93,58,.1);border-radius:6px;padding:2px 8px;margin-left:8px;vertical-align:2px;
}
.bcalc-opt .price{
  flex:0 0 auto;text-align:right;font-weight:800;font-size:16px;color:var(--green);
  white-space:nowrap;padding-top:1px;
}
.bcalc-opt .price small{display:block;font-weight:600;font-size:12px;color:var(--muted)}

.bcalc__result{
  background:var(--card-dark);color:#fff;border-radius:22px;
  padding:32px 30px;display:flex;flex-direction:column;position:sticky;top:24px;
}
.bcalc__cap{color:var(--muted-light);font-size:16px;font-weight:600}
.bcalc__total{font-weight:800;letter-spacing:-0.02em;line-height:1;font-size:clamp(34px,5vw,46px);margin-top:8px;transition:color .2s;color:#fff}
.bcalc__total .pre{font-size:.45em;font-weight:600;color:var(--muted-light);letter-spacing:0;margin-right:6px}
.bcalc__total.bump{color:#8fd39d}

.bcalc__brk{margin-top:22px;display:flex;flex-direction:column;gap:9px;padding-top:20px;border-top:1px solid rgba(255,255,255,.1)}
.bcalc__brk .li{display:flex;justify-content:space-between;gap:12px;font-size:14px;color:var(--muted-light)}
.bcalc__brk .li b{color:#fff;font-weight:600;white-space:nowrap}
.bcalc__brk .li.note b{color:#e6c89a;font-weight:700}

.bcalc__assure{
  margin-top:18px;font-size:13px;color:var(--muted-light);line-height:1.45;
  background:rgba(255,255,255,.05);border-radius:12px;padding:12px 14px;
}
.bcalc__assure b{color:#8fd39d}

.bcalc__cta{margin-top:auto;padding-top:22px}
.bcalc__btn{
  display:flex;align-items:center;justify-content:center;
  width:100%;border:none;cursor:pointer;background:var(--green-tag);color:#fff;
  font-family:inherit;font-weight:700;font-size:17px;padding:18px;border-radius:14px;
  transition:background .15s,transform .06s;text-align:center;
}
.bcalc__btn:hover{background:#587a5c}
.bcalc__btn:active{transform:translateY(1px)}
.bcalc__micro{text-align:center;color:var(--muted-light);font-size:13px;margin-top:11px;font-weight:500}

/* ====================================================================== */
/* ==========  КАЛЬКУЛЯТОР ИПОТЕКИ (mcalc) — новый дизайн  ============== */
/* ====================================================================== */
.mcalc{
  --cream:#F1EEE4; --ink:#1b1c19; --green:#2f5d3a; --green-tag:#4c6b50;
  --card-dark:#242a21; --white:#ffffff; --muted:#8b8b82; --muted-light:#b7b7ad;
  --line:#e6e2d6;
  font-family:'Manrope',system-ui,sans-serif;
  background:var(--cream); color:var(--ink);
  padding:48px 20px 56px;
}
.mcalc__wrap{max-width:1180px;margin:0 auto}

.mcalc__title{
  font-weight:800;
  font-size:clamp(28px,4.6vw,56px);
  line-height:1.02;
  letter-spacing:-0.02em;
  margin-bottom:34px;
  color:var(--ink);
}
.mcalc__title .accent{color:var(--green)}

.mcalc__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:start;
}
@media(max-width:840px){ .mcalc__grid{grid-template-columns:1fr} }

.mcalc__panel{display:flex;flex-direction:column;gap:14px}
.mcalc__field{
  background:var(--white);
  border-radius:18px;
  padding:22px 26px;
}
.mcalc__row{
  display:flex;justify-content:space-between;align-items:baseline;
  gap:14px;
}
.mcalc__field label{font-size:18px;font-weight:500;color:#333}
.mcalc__val{font-size:19px;font-weight:800;letter-spacing:-0.01em;text-align:right}
.mcalc__val small{font-weight:600;color:var(--muted);font-size:15px}

.mcalc__field input[type=range]{
  -webkit-appearance:none;appearance:none;
  width:100%;height:2px;margin-top:20px;
  background:var(--line);border-radius:2px;
  background-image:linear-gradient(var(--green),var(--green));
  background-repeat:no-repeat;
  cursor:pointer;
}
.mcalc__field input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none;appearance:none;
  width:24px;height:24px;border-radius:50%;
  background:var(--green);border:4px solid var(--white);
  box-shadow:0 0 0 1px var(--green);margin-top:0;
}
.mcalc__field input[type=range]::-moz-range-thumb{
  width:20px;height:20px;border-radius:50%;
  background:var(--green);border:4px solid var(--white);
  box-shadow:0 0 0 1px var(--green);
}
.mcalc__field input[type=range]:focus-visible{outline:3px solid rgba(47,93,58,.35);outline-offset:6px;border-radius:6px}

.mcalc__programs{display:flex;flex-wrap:wrap;align-items:center;gap:10px 22px;padding:6px 4px 0}
.mcalc__prog{
  font-weight:700;font-size:17px;color:var(--muted);
  background:none;border:none;cursor:pointer;padding:10px 2px;
  transition:color .15s;font-family:inherit;
}
.mcalc__prog:hover{color:var(--green)}
.mcalc__prog.active{
  color:var(--white);background:var(--green-tag);
  padding:11px 20px;border-radius:12px;
}
.mcalc__prog:focus-visible{outline:3px solid rgba(47,93,58,.4);outline-offset:3px;border-radius:12px}

.mcalc__result{
  background:var(--card-dark);
  color:#fff;border-radius:26px;
  padding:40px 44px;
  display:flex;flex-direction:column;
  min-height:100%;
}
.mcalc__cap{color:var(--muted-light);font-size:18px;font-weight:500;margin-bottom:10px}
.mcalc__hero{
  font-weight:800;letter-spacing:-0.02em;line-height:1;
  font-size:clamp(40px,6vw,62px);color:#fff;
}
.mcalc__hero small{font-size:.42em;font-weight:600;color:var(--muted-light);letter-spacing:0}
.mcalc__anchor{margin-top:14px;font-size:16px;color:var(--muted-light);font-weight:500}
.mcalc__anchor s{opacity:.9}
.mcalc__anchor b{color:#fff}

.mcalc__save{
  margin-top:22px;
  background:rgba(122,184,133,.14);
  border:1px solid rgba(122,184,133,.4);
  border-radius:16px;padding:18px 20px;
}
.mcalc__save-sl{font-size:15px;color:#bfe0c6;font-weight:600;margin-bottom:4px}
.mcalc__save-sv{font-size:26px;font-weight:800;color:#8fd39d;letter-spacing:-0.01em}
.mcalc__save-sub{font-size:14px;color:var(--muted-light);margin-top:4px}

.mcalc__facts{margin-top:22px;font-size:15px;color:var(--muted-light);font-weight:500}
.mcalc__facts b{color:#fff}

.mcalc__cta{margin-top:auto;padding-top:28px}
.mcalc__btn{
  display:flex;align-items:center;justify-content:center;
  width:100%;border:none;cursor:pointer;
  background:var(--green-tag);color:#fff;
  font-family:inherit;font-weight:700;font-size:18px;
  padding:20px;border-radius:16px;transition:background .15s,transform .06s;
  text-align:center;
}
.mcalc__btn:hover{background:#587a5c}
.mcalc__btn:active{transform:translateY(1px)}
.mcalc__micro{
  text-align:center;color:var(--muted-light);font-size:13.5px;
  margin-top:12px;font-weight:500;
}
