@font-face {
  font-family: "Darsan Sans";
  src: url("/assets/darsan-sans.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --aqua: #75dbe0;
  --aqua-dark: #1e9dac;
  --ink: #0d0d0d;
  --muted: #547078;
  --paper: #ffffff;
  --soft: #edf8fa;
  --error: #7c1e1e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Darsan Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  min-height: 84px;
  gap: 34px;
  padding: 12px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: .72;
}

.header-sales {
  text-align: center;
  font-size: 20px;
  line-height: 1.18;
}

.header-sales a {
  display: block;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 10px 28px;
  background: var(--aqua);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
  background: #8ae6ea;
  transform: translateY(-1px);
}

.button--dark {
  min-height: 36px;
  border-radius: 5px;
  padding: 8px 20px;
  background: #000;
  color: #fff;
  font-size: 13px;
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #252525;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #22303a url("/assets/images/hero.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 26, .38);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 40px));
  padding-top: 40px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(68px, 8vw, 100px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .015em;
}

.hero p {
  margin: 138px 0 0;
  font-size: 31px;
  font-weight: 300;
}

.hero p strong {
  font-weight: 700;
}

.about {
  min-height: 920px;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 560px 1fr;
  align-items: center;
  gap: 40px;
}

.about__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 20px;
}

.about__collage img {
  height: 100%;
  object-fit: cover;
}

.about__copy {
  padding-left: 0;
}

.about h2 {
  margin: 0 0 26px;
  max-width: 510px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.08;
}

.about p {
  margin: 0;
  max-width: 500px;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.28;
}

.about p strong {
  font-weight: 700;
}

.features {
  padding: 15px 0;
}

.features__grid {
  height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr .95fr;
  grid-template-rows: 190px 180px 190px;
  gap: 20px;
}

.feature-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  overflow: hidden;
  padding: 28px 30px;
  background: #1b2428 center / cover no-repeat;
  color: #fff;
}

.feature-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 10, .22), rgba(4, 8, 10, .86));
  content: "";
}

.feature-card__copy {
  position: relative;
  z-index: 1;
}

.feature-card h3,
.feature-card p {
  margin: 0;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.65;
}

.feature-card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.feature-card--intro {
  grid-row: 1 / span 2;
  background-image: url("/assets/images/feature-pool.jpg");
}

.feature-card--privacy {
  grid-row: 3;
  background-image: url("/assets/images/feature-facade.jpg");
}

.feature-card--details {
  grid-column: 2;
  grid-row: 1;
  align-items: flex-start;
  background-image: url("/assets/images/feature-aerial.jpg");
}

.feature-card--use {
  grid-column: 2;
  grid-row: 2 / span 2;
  background-image: url("/assets/images/feature-balcony.jpg");
}

.feature-card--yalta {
  grid-column: 3;
  grid-row: 1 / span 3;
  background-image: url("/assets/images/feature-building.jpg");
}

.promo {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: #34464c url("/assets/images/promo-aerial.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
  isolation: isolate;
}

.promo::before {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 26, .52);
  content: "";
}

.promo__inner {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0;
  border-radius: 4px;
}

.promo h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
}

.promo p {
  margin: 16px 0 28px;
  font-size: 20px;
}

.section-intro {
  min-height: 377px;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  text-align: center;
}

.section-intro h2 {
  margin: 0 0 42px;
  font-size: 60px;
  line-height: 1;
}

.section-intro p {
  max-width: 980px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.8;
}

.section-intro p strong {
  display: block;
  font-weight: 700;
}

.investment-media {
  min-height: 695px;
  padding: 20px 0 15px;
}

.investment-media__grid {
  height: 660px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.investment-media img {
  height: 100%;
  object-fit: cover;
}

.investment-media img:first-child {
  grid-row: 1 / span 2;
}

.lead-strip {
  min-height: 123px;
  display: grid;
  place-items: center;
  padding: 0;
}

.lead-form {
  width: min(760px, 100%);
  margin: 0 auto;
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lead-form--wide .lead-form__row {
  grid-template-columns: 1fr 1fr 1.2fr;
}

.field {
  width: 100%;
  height: 60px;
  border: 2px solid var(--aqua);
  border-radius: 0;
  padding: 0 22px;
  background-color: #fff;
  color: #000;
  outline: 0;
}

input[type="tel"].field {
  padding-left: 54px;
  background-image: linear-gradient(to bottom, #fff 0 33.333%, #0c57b7 33.333% 66.666%, #d52b1e 66.666% 100%);
  background-position: 22px center;
  background-repeat: no-repeat;
  background-size: 18px 12px;
}

.field:focus {
  border-color: #229aa3;
  box-shadow: 0 0 0 3px rgba(117, 219, 224, .25);
}

.lead-form .button {
  min-height: 60px;
  border-radius: 0;
}

.consents {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  text-align: left;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.35;
}

.consent input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--aqua);
}

.consent a {
  color: #d66d5a;
  text-underline-offset: 2px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #e9fff8;
  color: #102f2a;
  font-size: 14px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: #fff0f0;
  color: var(--error);
}

.slider-section {
  min-height: 790px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 60px 0;
}

.slider {
  width: 100%;
}

.slider__viewport {
  position: relative;
  width: min(860px, calc(100% - 220px));
  margin: 0 auto;
}

.slider__track {
  position: relative;
  min-height: 550px;
}

.slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

.slider__slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.slider__slide img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.slider__control {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eee;
  color: #111;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider__control--prev {
  left: -72px;
}

.slider__control--next {
  right: -72px;
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #c7c7c7;
  cursor: pointer;
}

.slider__dot.is-active {
  background: #202020;
}

.plans-heading {
  min-height: 236px;
  display: grid;
  place-items: center;
  padding: 34px 20px;
  background: var(--aqua);
  text-align: center;
}

.plans-heading h2 {
  margin: 0 0 20px;
  font-size: 51px;
  line-height: 1.05;
}

.plans-heading p {
  margin: 0;
  font-size: 22px;
}

.plan-cards {
  min-height: 505px;
  display: flex;
  align-items: center;
  padding: 15px 0;
}

.plan-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.plan-card {
  overflow: hidden;
  border-radius: 50px;
  background: var(--aqua);
  text-align: center;
}

.plan-card img {
  height: 320px;
  object-fit: cover;
  background: #f7f7f7;
}

.plan-card__body {
  height: 155px;
  padding: 24px 16px 20px;
}

.plan-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.plan-card p {
  margin: 0 0 24px;
  font-size: 14px;
}

.interior-slider {
  min-height: 407px;
  overflow: hidden;
  padding: 0;
}

.interior-slider .slider__viewport {
  width: min(860px, calc(100% - 220px));
}

.interior-slider .slider__track,
.interior-slider .slider__slide img {
  min-height: 377px;
  height: 377px;
}

.interior-slider .slider__dots {
  position: relative;
  margin-top: -38px;
  padding-bottom: 26px;
}

.yalta-gallery {
  min-height: 320px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.yalta-gallery img {
  height: 320px;
  object-fit: cover;
}

.online-form {
  min-height: 229px;
  display: grid;
  place-items: center;
  margin-top: 30px;
  padding: 14px 0 20px;
}

.faq {
  background: var(--soft);
  color: #102a30;
  padding: 76px 20px;
}

.faq__wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.faq__head {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, .96fr);
  align-items: end;
  gap: 30px;
  margin-bottom: 30px;
}

.faq__eyebrow {
  margin: 0 0 14px;
  color: var(--aqua-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.faq h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.faq__lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.faq__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.faq__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(30, 157, 172, .24);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 600;
}

.faq__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.fact,
.faq details {
  border: 1px solid rgba(16, 42, 48, .08);
  background: #fff;
  box-shadow: 0 18px 45px rgba(30, 157, 172, .08);
}

.fact {
  min-height: 158px;
  padding: 22px;
}

.fact p {
  margin: 0 0 12px;
  color: var(--aqua-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.fact span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.faq__questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq details {
  padding: 0 20px;
}

.faq summary {
  padding: 20px 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: -4px 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-map {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: #e8e8e8;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(.85) opacity(.84);
}

.contact-card {
  position: absolute;
  z-index: 2;
  top: 180px;
  left: max(60px, calc((100% - 1160px) / 2));
  width: 460px;
  min-height: 465px;
  padding: 58px 60px;
  background: var(--aqua);
}

.contact-card h2 {
  margin: 0 0 32px;
  font-size: 29px;
  line-height: 1.15;
}

.contact-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.contact-card a {
  display: inline-block;
  margin: 28px 0;
  color: #fff;
  text-decoration: none;
}

.site-footer {
  padding-bottom: 96px;
  background: #0d0d0d;
  color: #fff;
  text-align: center;
}

body.cookie-pending .site-footer {
  padding-bottom: 176px;
}

.site-footer__sale {
  padding: 60px 20px 0;
  font-size: 16px;
}

.site-footer__legal {
  padding: 32px 20px 34px;
  font-size: 14px;
  line-height: 1.55;
}

.messengers {
  padding: 18px 20px 20px;
  background: #f5f2ef;
  color: #202020;
  text-align: center;
}

.messengers p {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
}

.messengers__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.messengers__actions a {
  min-width: 92px;
  border-radius: 999px;
  padding: 9px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.messengers__telegram { background: #27a7e7; }
.messengers__max { background: #4169e1; }
.messengers__whatsapp { background: #25d366; }

.cookie {
  position: fixed;
  z-index: 2147483646;
  right: auto;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(600px, calc(100% - 40px));
  gap: 20px;
  border-radius: 5px;
  padding: 10px 14px 10px 24px;
  background: #ebebeb;
  box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  color: #222;
  font-size: 13px;
}

.cookie[hidden] {
  display: none;
}

.cookie button {
  min-width: 110px;
  min-height: 36px;
  border: 1px solid #999;
  border-radius: 5px;
  background: #ebebeb;
  color: #555;
  cursor: pointer;
}

.legal-page {
  min-height: 100vh;
  background: #fff;
}

.legal-page .site-header {
  position: relative;
  background: #0d0d0d;
}

.legal-title {
  padding: 70px 20px 30px;
  text-align: center;
}

.legal-title h1 {
  max-width: 1040px;
  margin: 0 auto;
  font-size: 36px;
  line-height: 1.2;
}

.legal-content {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 70px;
  font-size: 18px;
  line-height: 1.6;
}

.legal-content h2 {
  margin: 36px 0 12px;
  font-size: 26px;
  line-height: 1.25;
}

.legal-content p,
.legal-content ul {
  margin: 0 0 18px;
}

.legal-content a {
  color: #1a7f89;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background: #0d0d0d;
  color: #fff;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(90px, 18vw, 220px);
  line-height: .9;
}

.not-found p {
  margin: 24px 0;
  font-size: 22px;
}

@media (max-width: 980px) {
  .container {
    width: min(720px, calc(100% - 36px));
  }

  .site-header {
    position: absolute;
    min-height: 64px;
  }

  .site-header__inner {
    display: flex;
    justify-content: flex-end;
    min-height: 64px;
    padding: 10px 0;
  }

  .site-nav,
  .header-sales,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .site-nav {
    position: fixed;
    inset: 64px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 34px 28px;
    background: rgba(10, 18, 23, .97);
  }

  .menu-open .site-nav a {
    font-size: 20px;
  }

  .hero {
    min-height: 908px;
    padding-top: 64px;
  }

  .hero__content {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(44px, 12vw, 80px);
  }

  .hero p {
    margin-top: 110px;
    font-size: 25px;
  }

  .about {
    min-height: 1141px;
    align-items: flex-start;
    padding: 78px 0 72px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about__collage {
    grid-template-rows: 240px 240px;
  }

  .about__copy {
    padding: 0;
  }

  .about h2 {
    font-size: 34px;
  }

  .about p {
    font-size: 18px;
    line-height: 1.45;
  }

  .features__grid {
    height: 1850px;
    min-height: 1850px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
    gap: 0;
  }

  .feature-card,
  .feature-card--intro,
  .feature-card--privacy,
  .feature-card--details,
  .feature-card--use,
  .feature-card--yalta {
    grid-column: 1;
    grid-row: auto;
    min-height: 370px;
  }

  .features {
    padding: 0;
  }

  .promo {
    min-height: 600px;
  }

  .section-intro {
    min-height: 630px;
    padding: 76px 22px;
  }

  .section-intro h2 {
    margin-bottom: 50px;
    font-size: 48px;
  }

  .investment-media {
    min-height: 1375px;
    padding: 20px 0;
  }

  .investment-media__grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 640px 330px 330px;
    gap: 18px;
  }

  .investment-media img:first-child {
    grid-row: auto;
  }

  .lead-strip {
    min-height: 222px;
    display: grid;
    place-items: center;
    padding: 18px 0;
  }

  .lead-form {
    width: min(620px, 100%);
  }

  .slider-section {
    min-height: 489px;
    padding: 30px 0;
  }

  .slider__viewport,
  .interior-slider .slider__viewport {
    width: min(620px, calc(100% - 90px));
  }

  .slider__track,
  .slider__slide img {
    min-height: 350px;
    height: 350px;
  }

  .slider__control--prev { left: -42px; }
  .slider__control--next { right: -42px; }

  .plans-heading {
    min-height: 229px;
  }

  .plans-heading h2 {
    font-size: 44px;
  }

  .plan-cards {
    min-height: 1458px;
    padding: 15px 0;
  }

  .plan-cards__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .plan-card {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .plan-card img {
    height: 300px;
  }

  .interior-slider {
    min-height: 390px;
  }

  .interior-slider .slider__track,
  .interior-slider .slider__slide img {
    min-height: 360px;
    height: 360px;
  }

  .yalta-gallery {
    min-height: 390px;
    grid-template-columns: repeat(2, 1fr);
  }

  .yalta-gallery img {
    height: 195px;
  }

  .online-form {
    min-height: 377px;
    padding: 28px 0;
  }

  .faq__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .contact-map {
    min-height: 781px;
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .contact-map iframe {
    position: relative;
    grid-row: 2;
    min-height: 420px;
  }

  .contact-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 361px;
    min-height: 361px;
    padding: 30px 32px;
  }

  .legal-page .site-header {
    position: relative;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 36px);
  }

  .hero {
    min-height: 908px;
    background-position: 55% center;
  }

  .site-header {
    background: #0d0d0d;
  }

  .hero h1 {
    font-size: 51px;
    line-height: .98;
  }

  .hero p {
    max-width: 340px;
    margin: 94px auto 0;
    font-size: 24px;
  }

  .about {
    min-height: 1141px;
    padding: 120px 0 0;
  }

  .about__grid {
    gap: 34px;
  }

  .about__copy {
    width: 330px;
    margin: 0 auto;
  }

  .about__collage {
    grid-template-rows: 165px 165px;
    gap: 20px;
  }

  .about h2 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.08;
  }

  .about p {
    font-size: 18px;
    line-height: 1.45;
  }

  .features {
    padding: 10px 0;
  }

  .features__grid {
    height: 1830px;
    min-height: 1830px;
    grid-template-rows: repeat(5, 350px);
    gap: 20px;
  }

  .feature-card {
    padding: 28px 22px;
  }

  .feature-card h3 {
    font-size: 20px;
    line-height: 1.45;
  }

  .feature-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  .promo__inner {
    width: calc(100% - 24px);
    padding: 44px 20px;
  }

  .promo h2 {
    font-size: 31px;
  }

  .promo p {
    font-size: 17px;
  }

  .section-intro h2 {
    margin-bottom: 38px;
    font-size: 38px;
  }

  .section-intro p {
    max-width: 320px;
    font-size: 19px;
    line-height: 1.5;
  }

  .investment-media__grid {
    grid-template-rows: 685px 307px 307px;
  }

  .lead-form__row,
  .lead-form--wide .lead-form__row {
    display: contents;
  }

  .lead-form {
    display: flex;
    flex-direction: column;
  }

  .lead-form .field {
    order: 1;
    margin-bottom: 10px;
  }

  .lead-form .consents {
    order: 2;
    margin: 0 0 10px;
  }

  .lead-form .button {
    order: 3;
  }

  .lead-form .form-status {
    order: 4;
  }

  .promo .lead-form .button {
    border-radius: 999px;
  }

  .slider-section .slider__slide img {
    object-fit: contain;
  }

  .field,
  .lead-form .button {
    min-height: 54px;
    height: 54px;
  }

  .consent {
    font-size: 11px;
  }

  .lead-strip {
    min-height: 222px;
  }

  .slider-section {
    min-height: 489px;
    padding: 22px 0;
  }

  .slider__viewport,
  .interior-slider .slider__viewport {
    width: calc(100% - 70px);
  }

  .slider__track,
  .slider__slide img {
    min-height: 360px;
    height: 360px;
  }

  .slider__control {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .slider__control--prev { left: -36px; }
  .slider__control--next { right: -36px; }

  .plans-heading h2 {
    font-size: 32px;
  }

  .plans-heading p {
    font-size: 16px;
  }

  .plan-cards {
    min-height: 1458px;
  }

  .plan-card {
    border-radius: 38px;
  }

  .plan-card img {
    height: 295px;
  }

  .plan-card__body {
    min-height: 130px;
    padding: 20px 14px;
  }

  .plan-card p {
    margin-bottom: 16px;
  }

  .interior-slider {
    min-height: 202px;
    height: 202px;
  }

  .interior-slider .slider__track,
  .interior-slider .slider__slide img {
    min-height: 190px;
    height: 190px;
  }

  .online-form {
    min-height: 377px;
  }

  .faq {
    min-height: 1745px;
    padding: 54px 18px;
  }

  .faq h2 {
    font-size: 30px;
  }

  .faq__lead {
    font-size: 16px;
  }

  .faq__facts,
  .faq__questions {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 136px;
  }

  .contact-card h2 {
    margin-bottom: 22px;
    font-size: 25px;
  }

  .contact-card a {
    margin: 18px 0;
  }

  .site-footer__sale {
    padding-top: 46px;
  }

  .site-footer {
    padding-bottom: 84px;
  }

  body.cookie-pending .site-footer {
    padding-bottom: 160px;
  }

  .messengers__actions {
    gap: 7px;
  }

  .messengers__actions a {
    min-width: 0;
    padding: 8px 15px;
    font-size: 12px;
  }

  .cookie {
    right: auto;
    left: 10px;
    bottom: 100px;
    transform: none;
    width: calc(100% - 20px);
    padding: 10px 10px 10px 14px;
  }

  .cookie button {
    min-width: 78px;
  }

  .legal-title {
    padding: 48px 18px 20px;
  }

  .legal-title h1 {
    font-size: 28px;
  }

  .legal-content {
    width: calc(100% - 36px);
    padding: 22px 0 52px;
    font-size: 16px;
  }

  .legal-content h2 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
