:root {
  --color-text: #202126;
  --color-muted: #59606a;
  --color-blue: #5d96ee;
  --color-blue-dark: #357fe8;
  --color-panel: #edf5ff;
  --color-line: rgba(18, 24, 34, 0.15);
  --color-white: #fff;
  --font-body: "Poppins", "Open Sans", Arial, sans-serif;
  --font-alt: "Open Sans", Arial, sans-serif;
  --gutter: clamp(14px, 3.4vw, 54px);
  --container: 2124px;
  --radius: 14px;
  --section-gap: clamp(24px, 2.8vw, 44px);
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
  background: #fff;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page {
  overflow: hidden;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--color-blue);
  border-radius: 7px;
  padding: 0 29px;
  color: #fff;
  background: var(--color-blue);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.layout-card__info .button,
.details__form .button,
.footer-cta__form .button {
  min-height: 46px;
  padding-block: 6px;
}

.button:hover {
  background: var(--color-blue-dark);
  transform: translateY(-1px);
}

.button--outline {
  color: var(--color-blue-dark);
  background: #fff;
}

.button--outline:hover {
  color: #fff;
}

.button--wide {
  width: 100%;
}

.section {
  padding-block: var(--section-gap);
}

.section__title {
  margin: 0 0 18px;
  font-size: clamp(34px, 7vw, 50px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.section__text {
  max-width: 936px;
  margin: 0;
  color: #30343b;
  font-family: var(--font-alt);
  font-size: 17px;
  line-height: 1.55;
}

.site-header {
  position: absolute;
  z-index: 30;
  inset: 0 0 auto;
  color: #fff;
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-inline: var(--gutter);
}

.site-header__logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 0.9;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.site-header__nav {
  display: none;
}

.site-header__actions {
  display: none;
}

.site-header__burger {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.site-header__burger span,
.site-header__burger::before,
.site-header__burger::after {
  display: block;
  width: 29px;
  height: 2px;
  background: currentColor;
  content: "";
}

.site-header__burger span {
  margin: 0;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  text-transform: uppercase;
}

.lang__flag {
  width: 22px;
  height: 14px;
  border-radius: 1px;
  background: linear-gradient(#fff 0 33%, #1c55a5 33% 66%, #e42b35 66%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 14px) 0 20px;
  color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.5)), url("../images/42-tild6534-3832-4238-a634-346534303430-v1-1.webp");
  background-position: center top;
  background-size: cover;
}

.hero__grid {
  display: grid;
  gap: 18px;
}

.hero__title {
  margin: 0;
  font-family: var(--font-alt);
  font-size: clamp(43px, 10vw, 84px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 828px;
  margin: 0;
  font-family: var(--font-alt);
  font-size: clamp(17px, 3.4vw, 28px);
  line-height: 1.35;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(227, 236, 239, 0.28);
  backdrop-filter: blur(8px);
}

.hero__fact {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
  text-align: center;
}

.hero__fact-value {
  font-size: 19px;
  line-height: 1.2;
}

.hero__fact-label {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.2;
}

.concept__grid {
  display: grid;
  gap: 28px;
}

.concept__copy {
  display: flex;
  flex-direction: column;
}

.concept__media {
  justify-self: stretch;
}

.concept__copy ul {
  margin: 8px 0 20px 18px;
  padding: 0;
  font-family: var(--font-alt);
}

.concept__media {
  overflow: hidden;
  border-radius: var(--radius);
}

.concept__media img {
  width: 100%;
}

.concept__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.seller {
  position: relative;
  min-height: 75svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 44px;
  background: var(--color-panel);
}

.seller::before {
  position: absolute;
  inset: -32px;
  background: url("../images/63-tild6431-3637-4163-b764-383631363961-photo.png") center / cover no-repeat;
  opacity: 0;
  content: "";
}

.seller__card {
  position: relative;
  width: min(100%, 732px);
  min-height: min(560px, calc(75svh - 88px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  max-width: 732px;
  margin-inline: auto;
  border-radius: 8px;
  padding: clamp(32px, 6vw, 56px) clamp(24px, 5vw, 52px);
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
}

.seller__title {
  margin: 0;
  font-size: clamp(30px, 5.5vw, 40px);
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.seller .form {
  gap: 26px;
}

.seller .form__input {
  padding-block: 16px;
}

.seller .button {
  min-height: 58px;
}

.form {
  display: grid;
  gap: 18px;
}

.form__field {
  display: block;
}

.form__input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(24, 29, 35, 0.45);
  border-radius: 0;
  padding: 11px 0;
  color: var(--color-text);
  background: transparent;
  outline: none;
}

.form__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(24, 29, 35, 0.45);
}

.form__phone .form__input {
  border: 0;
}

.form__flag {
  width: 22px;
  height: 14px;
  flex: 0 0 auto;
  background: linear-gradient(#fff 0 33%, #2452a3 33% 66%, #e22e39 66%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.form__note,
.form__status {
  margin: 0;
  padding-top: 15px;
  color: #707781;
  font-size: 16px;
  line-height: 1.35;
  text-align: center;
}

.form__error {
  display: block;
  min-height: 1.2em;
  margin-top: 4px;
  color: #e05252;
  font-size: 13px;
  line-height: 1.2;
}

.form__field--invalid .form__input {
  border-bottom-color: #e05252;
}

.form__field--invalid .form__phone {
  border-bottom-color: #e05252;
}

.form__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #707781;
  font-size: 14px;
  line-height: 1.35;
  cursor: pointer;
  text-align: left;
}

.form__checkbox {
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--color-blue);
  cursor: pointer;
}

[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background-color: #27ae60;
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast--error {
  background-color: #c0392b;
}

.amenities {
  padding-top: calc(var(--section-gap) * 2);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
  overflow: visible;
  padding-bottom: 8px;
}

.amenity {
  min-width: 0;
}

.amenities .section__text {
  max-width: none;
}

.amenity__image {
  width: 100%;
  aspect-ratio: 1 / 1.22;
  border-radius: 8px;
  object-fit: cover;
}

.amenity__title {
  margin: 16px 0 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.catalogue__panel {
  display: grid;
  gap: 28px;
  border-radius: var(--radius);
  padding: 32px clamp(18px, 5vw, 78px);
  background: var(--color-panel);
}

.catalogue__title {
  margin: 0 0 16px;
  font-size: clamp(36px, 7vw, 53px);
  font-weight: 400;
  line-height: 1.15;
}

.catalogue__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  font-size: 24px;
  line-height: 1.15;
  text-align: center;
}

.catalogue__tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.catalogue__tabs span:first-child {
  padding-left: 0;
}

.catalogue__tabs span + span {
  border-left: 1px solid rgba(18, 24, 34, 0.45);
}

.catalogue__image {
  align-self: center;
  width: 100%;
  object-fit: contain;
}

.layouts__head {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}

.layouts__list {
  display: grid;
  gap: 18px;
}

.layouts {
  font-size: 1.35em;
}

.layout-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-panel);
}

.layout-card__summary {
  display: flex;
  min-height: 65px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border: 0;
  color: var(--color-text);
  background: var(--color-panel);
  text-align: left;
  cursor: pointer;
}

.layout-card__title {
  font-size: 19px;
  font-weight: 400;
  text-transform: uppercase;
}

.layout-card__plus {
  display: none;
}

.layout-card__body {
  display: grid;
  gap: 18px;
  padding: 12px;
}

.layout-card__visual {
  position: relative;
  display: grid;
  min-height: 252px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f8fbff;
}

.layout-card__image {
  width: min(78%, 560px);
  filter: blur(7px);
}

.layout-card__lock {
  display: none;
}

.layout-card__arrow {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--color-blue);
  background: #fff;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(44, 101, 211, 0.12);
  transform: translateY(-50%);
  cursor: pointer;
}

.layout-card__arrow--prev {
  left: 14px;
}

.layout-card__arrow--next {
  right: 14px;
}

.layout-card__info {
  display: grid;
  gap: 0;
  align-content: center;
  width: 100%;
}

.layout-card__info .button--wide {
  width: 50%;
  justify-self: center;
}

.layout-card__row {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--color-line);
  padding: 0;
  font-size: 24px;
  line-height: 1.25;
}

.roi__panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-panel);
}

.roi__title {
  padding: 30px 24px 20px;
}

.roi__table {
  display: grid;
  min-width: 0;
  font-size: 18px;
}

.roi__row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  padding: 24px;
}

.roi__badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 8px;
  padding: 6px 22px;
  color: #fff;
  background: var(--color-blue);
  font-size: 34px;
  line-height: 1;
}

.roi__scroll {
  overflow-x: visible;
}

.roi__action {
  padding: 26px;
  text-align: center;
}

.photos__slider {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
}

.photos__track {
  display: flex;
  gap: 24px;
  transition: transform 280ms ease;
}

.photos__item {
  flex: 0 0 min(78vw, 820px);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.photos__image {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.photos__controls {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 14px;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(93, 150, 238, 0.5);
  border-radius: 50%;
  color: var(--color-blue);
  background: #fff;
  cursor: pointer;
}

.location__grid {
  display: grid;
  gap: 34px;
}

.location__list {
  display: grid;
  margin-top: 26px;
}

.location__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--color-line);
  padding: 16px 0;
}

.location__map {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.details {
  padding-bottom: calc(var(--section-gap) * 0.72);
}

.details__panel {
  position: relative;
  display: grid;
  gap: 24px;
  overflow: hidden;
  border-radius: 8px;
  min-height: 420px;
  padding: 34px;
  color: #fff;
  background: url("../images/63-tild6431-3637-4163-b764-383631363961-photo.png") center / cover no-repeat;
}

.details__panel::before {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  content: "";
}

.details__copy,
.details__form {
  position: relative;
}

.details__title {
  margin: 0 0 12px;
  font-size: clamp(41px, 8vw, 77px);
  font-weight: 600;
  line-height: 1.08;
}

.details__form {
  border-radius: 8px;
  display: grid;
  align-content: center;
  justify-items: stretch;
  padding: clamp(34px, 4vw, 52px) clamp(24px, 4vw, 46px);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.9);
  font-size: 22px;
}

.expert {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.expert__avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
}

.expert__name {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
}

.expert__role {
  color: #777;
}

.developer__grid {
  display: grid;
  gap: 30px;
  font-size: 1.35em;
}

.developer__image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.developer__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 36px;
  text-align: center;
  grid-column: 1 / -1;
  width: 100%;
  font-size: 130%;
}

.developer__number {
  color: var(--color-blue);
  font-size: clamp(60px, 12vw, 100px);
  line-height: 1;
  white-space: nowrap;
}

.footer-cta {
  min-height: 390px;
  display: flex;
  align-items: center;
  padding-block: 56px;
  background: #fff;
}

.footer-cta__grid {
  display: grid;
  gap: 34px;
}

.footer-cta__form {
  border-radius: 8px;
  padding: clamp(36px, 5vw, 68px);
  background: var(--color-panel);
}

.footer-cta__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px clamp(28px, 4vw, 70px);
  padding-top: 50px;
}

.footer-cta__address {
  margin: 0;
}

.footer-cta__email {
  white-space: nowrap;
}

.footer-cta,
.footer-cta .section__text {
  font-size: 120%;
}

.footer-cta .section__title {
  font-size: clamp(41px, 8vw, 60px);
}

@media (max-width: 719px) {
  .site-header {
    position: fixed;
    background: rgba(13, 24, 34, 0.58);
    backdrop-filter: blur(10px);
  }

  .site-header__inner {
    min-height: 58px;
  }

  .layouts__list .layout-card__info .button--wide {
    min-height: 42px;
    width: min(100%, 178px);
    padding-inline: 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .developer__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    font-size: 13px;
  }

  .developer__number {
    font-size: clamp(30px, 11vw, 44px);
  }

  .roi__row span.roi__badge {
    justify-self: center;
    display: inline-flex;
    min-width: 132px;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .roi__row span.roi__badge::before {
    color: #fff;
  }

  .catalogue__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    font-size: 12px;
  }

  .catalogue__tabs span {
    padding: 0;
  }

  .catalogue__tabs span + span {
    border-left: 0;
  }

  .photos__image {
    aspect-ratio: 0.89 / 1;
  }

  .roi__table {
    display: grid;
    gap: 0;
    font-size: 18px;
  }

  .roi__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 22px;
  }

  .roi__row:first-child {
    display: none;
  }

  .roi__row span {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 38px;
  }

  .roi__row span::before {
    color: var(--color-muted);
    font-size: 0.82em;
  }

  .roi__row span:nth-child(1)::before {
    content: "Project";
  }

  .roi__row span:nth-child(2)::before {
    content: "ROI";
  }

  .roi__row span:nth-child(3)::before {
    content: "Price per m²";
  }

  .roi__row span:nth-child(4)::before {
    content: "Price per Unit";
  }

  html[lang="ru"] .roi__row span:nth-child(1)::before {
    content: "Проект";
  }

  html[lang="ru"] .roi__row span:nth-child(2)::before {
    content: "ROI";
  }

  html[lang="ru"] .roi__row span:nth-child(3)::before {
    content: "Цена за м²";
  }

  html[lang="ru"] .roi__row span:nth-child(4)::before {
    content: "Цена за юнит";
  }
}

.mobile-menu {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  align-items: center;
  gap: 28px;
  padding: 28px var(--gutter);
  color: #fff;
  background: rgba(13, 24, 34, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__top {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__close {
  width: 53px;
  height: 53px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 41px;
}

.mobile-menu__nav {
  display: grid;
  grid-column: 1 / -1;
  gap: 18px;
  font-size: 29px;
}

.mobile-menu > .lang {
  justify-self: start;
}

.mobile-menu > .button {
  justify-self: end;
  min-height: 48px;
  padding-inline: 20px;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.58);
}

.modal--open {
  display: grid;
}

.modal__dialog {
  position: relative;
  width: min(100%, 1560px);
  max-height: calc(100svh - 36px);
  overflow: auto;
  border-radius: 14px;
  background: rgba(237, 245, 255, 0.96);
}

.modal__close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: var(--color-blue);
  background: rgba(255, 255, 255, 0.55);
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}

.modal--callback .modal__dialog {
  width: min(100%, 820px);
  padding: 54px clamp(22px, 7vw, 86px);
  text-align: center;
}

.modal__title {
  margin: 0 0 18px;
  font-size: clamp(41px, 8vw, 55px);
  font-weight: 500;
  line-height: 1.12;
}

.modal__subtitle {
  margin: 0 0 42px;
  color: #5f6670;
  font-size: clamp(22px, 4vw, 20px);
}

.modal__card {
  border-radius: 10px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
}

.modal--request .modal__dialog,
.modal--catalog .modal__dialog,
.modal--analysis .modal__dialog {
  display: grid;
  gap: 28px;
  padding: 64px clamp(24px, 7vw, 95px);
}

.modal__media {
  align-self: center;
  overflow: hidden;
  border-radius: 14px;
  background: var(--color-panel);
}

.lightbox {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox--open {
  display: grid;
}

.lightbox__image {
  max-height: 88svh;
  border-radius: 8px;
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 43px;
}

@media (min-width: 720px) {
  .layouts__head {
    grid-template-columns: 1fr minmax(220px, 410px);
    align-items: center;
  }

  .layouts__head .button {
    justify-self: end;
    width: 100%;
  }

  .concept__grid,
  .location__grid,
  .footer-cta__grid {
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
  }

  .concept__grid {
    align-items: stretch;
  }

  .concept__copy {
    height: 100%;
  }

  .concept__media {
    justify-self: end;
    width: min(100%, 920px);
  }

  .location__grid {
    align-items: stretch;
  }

  .developer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .developer__grid > div:first-child {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  .developer__grid > div:first-child .concept__actions {
    margin-top: auto;
  }

  .developer__image {
    justify-self: end;
    height: 100%;
    min-height: 420px;
  }

  .concept__actions {
    grid-template-columns: max-content max-content;
  }

  .catalogue__panel,
  .modal--request .modal__dialog,
  .modal--catalog .modal__dialog,
  .modal--analysis .modal__dialog {
    grid-template-columns: 0.8fr 1fr;
    align-items: center;
  }

  .layout-card__body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    padding: 0;
  }

  .layout-card__visual {
    min-height: 504px;
    padding: 54px 72px;
  }

  .layout-card__info {
    min-height: 504px;
    padding: 54px 72px;
  }
}

@media (min-width: 1100px) {
  body {
    font-size: 19px;
  }

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

  .site-header__nav,
  .site-header__actions {
    display: flex;
    align-items: center;
    gap: clamp(30px, 3.6vw, 70px);
    font-size: 14px;
    text-transform: uppercase;
  }

  .site-header__actions {
    gap: 20px;
    text-transform: none;
  }

  .site-header__actions .button--outline {
    min-height: 60px;
    border-color: #fff;
    border-radius: 16px;
    padding-inline: 34px;
    color: #fff;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
  }

  .site-header__actions .button--outline:hover {
    border-color: #eb695d;
    color: #fff;
    background: #eb695d;
  }

  .site-header__burger {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 10px);
    padding-bottom: 24px;
    background-image: url("../images/22-tild3934-3936-4530-b037-613562376665-hero.png");
    background-size: cover;
  }

  .hero__grid {
    grid-template-columns: 0.95fr 1fr;
    align-items: center;
    gap: 60px;
  }

  .hero__facts {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 34px;
  }

  .hero__fact {
    min-height: 138px;
  }

  .hero__fact-value {
    font-size: 22px;
  }

  .hero__fact-label {
    font-size: 17px;
  }

  .section__text {
    font-size: 18px;
  }

  .seller {
    min-height: 78svh;
    padding-block: 34px;
  }

  .seller::before {
    opacity: 1;
  }

  .seller__card {
    margin-left: 0;
    width: min(100%, 1037px);
    min-height: min(660px, calc(78svh - 68px));
    padding: 58px 82px 48px;
    max-width: 1037px;
  }

  .amenities__grid {
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }

  .amenity {
    min-width: 0;
  }

  .amenities__grid .amenity {
    grid-column: auto;
  }

  .amenity__image {
    aspect-ratio: 1.55 / 1;
  }

  .catalogue__panel {
    min-height: 620px;
    grid-template-columns: 0.8fr 1fr;
  }

  .catalogue__tabs {
    flex-wrap: nowrap;
    font-size: 24px;
  }

  .layouts {
    font-size: 2em;
  }

  .layout-card__summary {
    min-height: 74px;
  }

  .layout-card__title {
    font-size: 32px;
  }

  .layout-card__row {
    min-height: 88px;
    font-size: 32px;
  }

  .layout-card__info .button {
    min-height: 50px;
    font-size: 18px;
	margin-top: 15px;
  }

  .roi__table {
    font-size: 36px;
  }

  .roi__action .button {
    font-size: 19px;
  }

  .details__panel {
    min-height: 504px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.67fr);
    align-items: center;
  }

  .details__form {
    justify-self: end;
    width: min(100%, 620px);
    font-size: 18px;
  }

  .details__form .expert__avatar {
    width: 172px;
    height: 172px;
  }

  .developer__grid {
    font-size: 2em;
  }

  .developer__grid > div:first-child,
  .developer__image {
    min-height: 520px;
  }

  .developer .section__text {
    font-size: 24px;
    line-height: 1.55;
  }

  .developer .section__title {
    font-size: 64px;
  }

  .developer .button {
    min-height: 62px;
    font-size: 24px;
  }

  .developer__stats {
    font-size: 24px;
  }

  .photos__item {
    flex-basis: 61%;
  }

  .footer-cta__grid {
    grid-template-columns: 1fr 0.7fr;
  }
}
