@font-face {
  font-family: Montserrat;
  src: url("../fonts/embassy-world/montserrat-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Montserrat;
  src: url("../fonts/embassy-world/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: Raleway;
  src: url("../fonts/embassy-world/raleway-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Raleway;
  src: url("../fonts/embassy-world/raleway-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: PhonkSans;
  src: url("../fonts/embassy-world/PhonkSans-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
}
:root {
  --ew-orange: #f26608;
  --ew-orange-dark: #cf4f00;
  --ew-cream: #fcf6ee;
  --ew-cream-deep: #f8ebdf;
  --ew-ink: #24211f;
  --ew-brown: #3b332d;
  --ew-muted: #706861;
  --ew-line: #e2d8cf;
  --ew-white: #ffffff;
  --ew-blue: #229ed9;
  --ew-green: #25d366;
  --ew-container: 1328px;
  --ew-header: 100px;
}
*,
::after,
::before {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body.ew-page {
  margin: 0;
  color: var(--ew-ink);
  background: var(--ew-white);
  font-family: Raleway, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
.ew-page img {
  display: block;

}
.ew-page :where(button, input) {
  font: inherit;
}
.ew-page a,
.ew-page button {
  -webkit-tap-highlight-color: transparent;
}
.ew-page a {
  color: inherit;
}
.ew-page h1,
.ew-page h2,
.ew-page h3,
.ew-page p {
  margin-top: 0;
}
.ew-page h1,
.ew-page h2,
.ew-page h3 {
  font-family: Montserrat, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.12;
}
.ew-page h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
}
.ew-container {
  width: min(calc(100% - 112px), var(--ew-container));
  margin-inline: auto;
}
.ew-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 16px;
  background: var(--ew-white);
  color: var(--ew-ink);
  transform: translateY(-180%);
}
.ew-skip:focus {
  transform: translateY(0);
}
.ew-header {
  position: relative;
  z-index: 100;
  height: var(--ew-header);
  background: var(--ew-white);
  border-bottom: 0;
}
.ew-header__inner {
  display: flex;
  width: min(calc(100% - 24px), 1320px);
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
  margin-inline: auto;
  padding: 20px 12px;
  gap: 0;
}
.ew-logo {
  display: inline-flex;
  flex: 0 0 auto;
}
.ew-logo img {
  width: 234px;
  height: auto;
}
.ew-footer__logo img {
  width: 335px;
  height: 56px;
}
.ew-nav {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-left: auto;
}
.ew-nav-item {
  position: relative;
  display: flex;
  height: 52px;
  align-items: center;
  margin-block: 0;
}
.ew-nav-item > a {
  position: relative;
  z-index: 2;
  color: #3f2719;
  font-family: PhonkSans, Montserrat, sans-serif;
  display: inline-flex;
  align-items: center;
  padding: 15px 10px;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s linear;
}
.ew-nav-item:not(.ew-nav-item--dropdown) > a::before {
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.2s ease-out;
}
.ew-nav-item:not(.ew-nav-item--dropdown):focus-within > a::before,
.ew-nav-item:not(.ew-nav-item--dropdown):hover > a::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.ew-nav-item--contacts:focus-within > a,
.ew-nav-item--contacts:hover > a {
  color: var(--ew-orange);
}
.ew-nav-dropdown-toggle {
  display: inline-flex;
  width: 21px;
  height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: #3f2719;
  background: 0 0;
  cursor: pointer;
}
.ew-nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s linear;
}
.ew-nav-item--dropdown.is-open .ew-nav-chevron,
.ew-nav-item--dropdown:hover .ew-nav-chevron {
  transform: translateY(2px) rotate(225deg);
}
.ew-subnav {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 120;
  min-width: 100%;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  visibility: hidden;
  list-style: none;
  transition:
    visibility 0s linear 0.3s,
    max-height 0.3s ease;
}
.ew-nav-item--dropdown.is-open .ew-subnav,
.ew-nav-item--dropdown:hover .ew-subnav {
  max-height: 1000px;
  visibility: visible;
  transition:
    max-height 0.3s ease,
    visibility 0s linear 0s;
}
.ew-subnav li {
  display: block;
  margin: 0;
  padding: 0;
}
.ew-subnav a,
.ew-subnav-call {
  display: flex;
  width: max-content;
  min-width: 100%;
  max-width: 425px;
  min-height: 41px;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
  border: 0;
  color: var(--ew-white);
  background: #d8c3ae;
  font-family: PhonkSans, Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 2px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 0.2s linear,
    background-color 0.2s linear;
}
.ew-subnav a:focus-visible,
.ew-subnav a:hover,
.ew-subnav-call:focus-visible,
.ew-subnav-call:hover {
  color: #3f2719;
  background: #f5ecdd;
}
.ew-subnav a img {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}
.ew-contact-icon {
  display: block;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ew-contact-icon--whatsapp {
  background-image: url("../assets/wp.svg");
}
.ew-subnav a:focus-visible .ew-contact-icon--whatsapp,
.ew-subnav a:hover .ew-contact-icon--whatsapp {
  background-image: url("../assets/wa-ico-hover.svg");
}
.ew-contact-icon--telegram {
  background-image: url("../assets/tg-ico-nav.svg");
}
.ew-subnav a:focus-visible .ew-contact-icon--telegram,
.ew-subnav a:hover .ew-contact-icon--telegram {
  background-image: url("../assets/tg-ico-hover.svg");
}
.ew-contact-icon--email {
  background-image: url("../assets/ico-email-nav.svg");
}
.ew-subnav a:focus-visible .ew-contact-icon--email,
.ew-subnav a:hover .ew-contact-icon--email {
  background-image: url("../assets/email-menu-hover.svg");
}
.ew-nav-item--contacts .ew-subnav {
  right: 0;
  left: auto;
}
.ew-subnav-call {
  justify-content: center;
  color: var(--ew-white);
  background: var(--ew-orange);
}
.ew-menu-toggle {
  display: flex;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  margin-left: 24px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 1px solid #3f2719;
  border-radius: 50%;
  background: var(--ew-white);
  cursor: pointer;
}
.ew-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  align-self: center;
  margin: 0;
  background: #3f2719;
  transition:
    width 180ms ease,
    margin 180ms ease,
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
}
.ew-menu-toggle span:nth-child(3) {
  width: 12px;
  margin-left: 12px;
}
.ew-menu-toggle:focus-visible span,
.ew-menu-toggle:hover span {
  background: var(--ew-orange);
}
.ew-menu-toggle:focus-visible span:first-child,
.ew-menu-toggle:hover span:first-child {
  width: 12px;
  margin-left: 12px;
}
.ew-menu-toggle:focus-visible span:nth-child(3),
.ew-menu-toggle:hover span:nth-child(3) {
  width: 24px;
  margin-left: 0;
}
.ew-hero__socials {
  display: contents;
}
.ew-menu-toggle[aria-expanded="true"] span:first-child {
  width: 24px;
  margin-left: 0;
  transform: translateY(8px) rotate(45deg);
}
.ew-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.ew-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  width: 24px;
  margin-left: 0;
  transform: translateY(-8px) rotate(-45deg);
}
.ew-mobile-menu {
  position: fixed;
  inset: var(--ew-header) 0 0;
  z-index: 90;
  overflow-y: auto;
  background: var(--ew-cream);
}
.ew-mobile-menu::before {
  position: absolute;
  top: 45px;
  left: -450px;
  width: 700px;
  height: 677px;
  background: url("../assets/figma-menu-tree.png") center/contain no-repeat;
  content: "";
  opacity: 1;
  pointer-events: none;
}
.ew-mobile-menu nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  width: min(calc(100% - 40px), 540px);
  margin: 35px auto 24px;
  border-top: 1px solid var(--ew-line);
}
.ew-mobile-menu a {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border-bottom: 1px solid var(--ew-line);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  text-transform: uppercase;
}
.ew-mobile-menu .ew-button {
  height: 53px;
  min-height: 53px;
  margin-top: 48px;
  padding-block: 0;
  font-size: 16px;
}
.ew-mobile-menu__socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.ew-mobile-menu .ew-mobile-menu__socials a {
  min-height: 0;
  padding: 0;
  border: 0;
}
.ew-mobile-chevron {
  width: 10px;
  height: 10px;
  margin-right: 3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}
.ew-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--ew-white);
  background-image:
    linear-gradient(
      90deg,
      #2d2720 0,
      rgba(45, 39, 32, 0.99) 36%,
      rgba(45, 39, 32, 0.88) 56%,
      rgba(45, 39, 32, 0.62) 100%
    ),
    var(--ew-hero-image);
  background-position: center 20%;
  background-size: cover;
}
.ew-hero::before {
  position: absolute;
  top: 64px;
  bottom: 0;
  left: -180px;
  width: 620px;
  background: url("../assets/figma-bonsai.png") center/contain no-repeat;
  content: "";
  filter: grayscale(1) brightness(1.7);
  opacity: 0.3;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 72%,
    transparent 100%
  );
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
}
.ew-hero__rings {
  position: absolute;
  z-index: 0;
  top: 390px;
  left: -118px;
  width: 384px;
  height: 332px;
  background: url("../assets/figma-tree-rings.png") center/contain no-repeat;
  filter: grayscale(1) brightness(1.75);
  opacity: 0.2;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 68%,
    transparent 100%
  );
  mask-image: linear-gradient(90deg, #000 0%, #000 68%, transparent 100%);
}
.ew-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(18, 16, 14, 0.5));
  content: "";
  pointer-events: none;
}
.ew-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 416px;
  align-items: start;
  gap: 72px;
  min-height: 720px;
  padding-block: 72px;
}
.ew-hero__content {
  padding-left: 48px;
}
.ew-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 30px;
  padding: 7px 12px;
  border: 1px solid var(--ew-orange);
  border-radius: 999px;
  color: var(--ew-white);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.ew-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ew-orange);
  box-shadow: 0 0 0 0 rgba(243, 111, 33, 0.6);
  animation: ew-pulse 1.7s infinite;
}
.ew-eyebrow,
.ew-section-label {
  color: var(--ew-orange);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.ew-hero .ew-eyebrow {
  margin-bottom: 14px;
  color: #cdc6c3;
  font-size: 16px;
  font-weight: 600;
}
.ew-hero h1 {
  max-width: 780px;
  margin-bottom: 32px;
  font-size: 64px;
  font-weight: 600;
}
.ew-hero__location {
  margin-bottom: 54px;
  font-size: 20px;
  font-weight: 600;
}
.ew-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 68px;
}
.ew-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}
.ew-button:focus-visible,
.ew-button:hover {
  transform: translateY(-2px);
}
.ew-button:focus-visible,
.ew-carousel-controls button:focus-visible,
.ew-menu-toggle:focus-visible,
.ew-page a:focus-visible,
.ew-page summary:focus-visible,
.ew-social:focus-visible {
  outline: 3px solid rgba(29, 159, 209, 0.62);
  outline-offset: 3px;
}
.ew-button--primary {
  color: var(--ew-white);
  background: var(--ew-orange);
}
.ew-button--primary:focus-visible,
.ew-button--primary:hover {
  background: var(--ew-orange-dark);
}
.ew-button--outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--ew-white);
  background: rgba(32, 28, 25, 0.32);
}
.ew-button--outline-light:focus-visible,
.ew-button--outline-light:hover {
  border-color: var(--ew-white);
  background: rgba(255, 255, 255, 0.12);
}
.ew-hero__actions .ew-button {
  height: 51px;
  min-height: 51px;
  padding-block: 0;
  border-radius: 12px;
}
.ew-button--telegram {
  color: var(--ew-white);
  background: var(--ew-blue);
}
.ew-social {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ew-white);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms ease,
    filter 160ms ease;
}
.ew-page .ew-button--telegram,
.ew-page .ew-social,
.ew-page .ew-telegram-poster {
  color: var(--ew-white);
}
.ew-social:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.04);
}
.ew-social--telegram {
  background: var(--ew-blue);
}
.ew-social--whatsapp {
  background: var(--ew-green);
}
.ew-social img {
  width: 27px;
  height: 28px;
}
.ew-social--telegram img {
  width: 19px;
  height: 16px;
}
.ew-hero__features {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 12px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 600;
}
.ew-hero__features li::before {
  margin-right: 8px;
  color: var(--ew-orange);
  content: "•";
}
.ew-hero__features li {
  white-space: nowrap;
}
.ew-hero-graphic {
  display: block;
  width: 206px;
  height: 105px;
  margin-top: 54px;
}
.ew-hero-graphic img {
  display: block;
  width: 206px;
  height: 105px;
}
.ew-price {
  position: relative;
  width: 100%;
  min-height: 585px;
  margin-top: 37px;
  padding: 24px;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: rgba(68, 60, 53, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}
.ew-price::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #f26608 0,
    #f26608 15%,
    rgba(242, 102, 8, 0) 82%
  );
  content: "";
  pointer-events: none;
}
.ew-price__label {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
}
.ew-price > strong {
  display: block;
  margin: 0 0 7px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}
.ew-price > span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}
.ew-price__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.ew-price > span + .ew-price__divider {
  margin: 26px 0 23px;
}
.ew-countdown__label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}
.ew-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 65px));
  justify-content: space-between;
  margin: 0;
}
.ew-countdown div {
  position: relative;
  text-align: center;
}
.ew-countdown div:not(:last-child)::after {
  position: absolute;
  top: 10px;
  right: -23px;
  color: #ff7a00;
  content: ":";
  font-family: Montserrat, Arial, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 32px;
}
.ew-countdown b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.ew-countdown small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.ew-countdown__complete {
  margin: 24px 0;
  padding: 12px;
  border-left: 3px solid var(--ew-orange);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}
.ew-countdown + .ew-countdown__complete + .ew-price__divider,
.ew-countdown__complete[hidden] + .ew-price__divider {
  margin: 25px 0 23px;
}
.ew-apartment-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  height: 51px;
  margin: 0 0 11px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.ew-apartment-tabs button {
  min-width: 0;
  min-height: 41px;
  padding: 6px 2px;
  border: 0;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.88);
  background: 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}
.ew-apartment-tabs button[aria-selected="true"] {
  color: var(--ew-white);
  background: var(--ew-orange);
}
.ew-price__summary {
  padding: 21px 15px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  color: var(--ew-white);
  background: rgba(255, 255, 255, 0.06);
}
.ew-price__summary span,
.ew-price__summary strong {
  display: block;
}
.ew-price__summary strong {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
.ew-price__summary p,
.ew-price__summary span {
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
}
.ew-price__summary span {
  margin-top: 8px;
}
.ew-price__summary p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
}
.ew-price .ew-payment-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.ew-section {
  padding-block: 120px;
}
.ew-lead {
  max-width: 680px;
  color: var(--ew-muted);
  font-size: 18px;
}
.ew-legal {
  position: relative;
  overflow: hidden;
  padding-block: 118px 116px;

}
.ew-legal::after {
  position: absolute;
  inset: 0;
  background: url("../assets/figma-scales.png") calc(50% + 470px) center/1520px
    1013px no-repeat;
  content: "";
  opacity: 0.13;
  pointer-events: none;
}
.ew-legal__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 654px) minmax(0, 514px);
  justify-content: space-between;
  gap: 80px;
  align-items: center;
}
.ew-legal h2 {
  margin-bottom: 32px;
  font-size: 48px;
  line-height: 58px;
}
.ew-legal__badge {
  display: inline-block;
  width: 488px;
  max-width: 100%;
  margin-bottom: 31px;
  padding: 16px 24px;
  border-radius: 8px;
  color: var(--ew-white);
  background: var(--ew-orange);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
.ew-legal .ew-lead {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}
.ew-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 48px 0 45px;
}
.ew-service-list div {
  display: flex;
  min-height: 45px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--ew-line);
  border-radius: 4px;
  background: var(--ew-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.ew-service-list span {
  color: var(--ew-orange);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}
.ew-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ew-orange-dark);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.ew-page .ew-text-link {
  color: var(--ew-orange-dark);
}
.ew-text-link:hover span {
  transform: translateX(4px);
}
.ew-text-link span {
  transition: transform 160ms ease;
}
.ew-consultation {
  position: relative;
  align-self: start;
  min-height: 478px;
  margin-top: 55px;
  padding: 25px 23px 22px;
  border: 1px solid var(--ew-line);
  border-radius: 16px;
  background: var(--ew-cream);
  text-align: center;
}
.ew-consultation h3 {
  margin-bottom: 37px;
  font-size: 40px;
  font-weight: 600;
  line-height: 44px;
}
.ew-consultation > p {
  max-width: 450px;
  margin: 0 auto;
  color: var(--ew-muted);
  font-size: 15px;
  line-height: 22px;
}
.ew-consultation > .ew-button {
  width: 248px;
  height: 51px;
  margin: 0 auto;
  min-height: 51px;
  margin-top: 35px;
  padding: 0 24px;
  border-radius: 13px;
}
.ew-consultation__socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 34px 0 0;
}
.ew-consultation__socials .ew-social {
  width: 50px;
  height: 50px;
}
.ew-consultation ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin: 34px 0 0;
  padding: 34px 0 0;
  border-top: 1px solid var(--ew-line);
  list-style: none;
  color: var(--ew-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.ew-consultation li {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.ew-consultation li::before {
  margin-right: 8px;
  color: var(--ew-orange);
  content: "•";
}
.ew-benefits,
.ew-faq {

}
.ew-telegram-section {
  color: #1b1a19;
}
.ew-section-heading {
  margin-bottom: 58px;
}
.ew-section-heading--center {
  text-align: center;
}
.ew-section-heading h2 span {
  color: var(--ew-orange);
}
.ew-telegram-section {
  padding: 60px 0 36px;
}
.ew-telegram-section .ew-container {
  width: calc(100% - 112px);
  max-width: none;
}
.ew-telegram-section .ew-section-heading {
  margin-bottom: 101px;
}
.ew-telegram-section .ew-section-heading h2 {
  margin-bottom: 38px;
  color: #1b1a19;
  font-size: 64px;
  line-height: 1.12;
}
.ew-telegram-intro {
  max-width: 1040px;
  margin: 0 auto;
  color: #5a534f;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.ew-telegram-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 40%);
  gap: 72px;
  align-items: end;
}
.ew-topic-list {
  display: flex;
  min-height: 0;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
}
.ew-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
}
.ew-topic {
  display: grid;
  min-height: 136px;
  grid-template-columns: 24px minmax(0, 1fr);
  align-content: center;
  align-items: start;
  gap: 13px;
  padding: 18px 20px;
  border: 1px solid #d2cbc8;
  border-radius: 20px;
  background: var(--ew-white);
}
.ew-topic:last-child {
  grid-column: 1/-1;
}
.ew-topic > img {
  width: 24px;
  height: 24px;
  margin-top: 1px;
}
.ew-topic h3 {
  margin-bottom: 9px;
  color: #1b1a19;
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
}
.ew-topic p {
  margin-bottom: 0;
  color: #5a534f;
  font-size: 18px;
  line-height: 28px;
}
.ew-channel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: auto 0 95px;
  padding-top: 68px;
}
.ew-channel-stats div {
  padding: 0;
  border: 0;
}
.ew-channel-stats div:not(:first-child) {
  padding-left: 28px;

}
.ew-channel-stats span,
.ew-channel-stats strong {
  display: block;
}
.ew-channel-stats strong {
  color: var(--ew-orange);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
}
.ew-channel-stats span {
  margin-top: 18px;
  color: #5a534f;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}
.ew-telegram-actions {
  display: flex;
  gap: 20px;
}
.ew-telegram-actions .ew-button {
  width: 100%;
  max-width: 338px;
  min-height: 64px;
  border-radius: 12px;
  font-size: 18px;
}
.ew-button--telegram {
  gap: 12px;
  background: var(--ew-blue);
}
.ew-button--telegram img {
  width: 24px;
  height: 24px;
}
.ew-button--telegram-outline {
  max-width: 304px !important;
  border-color: var(--ew-blue);
  color: var(--ew-blue);
  background: 0 0;
}
.ew-button--telegram-outline:focus-visible,
.ew-button--telegram-outline:hover {
  color: var(--ew-white);
  background: var(--ew-blue);
}
.ew-telegram-poster {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 675px;
  min-height: 0;
  aspect-ratio: 6/7;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 40px;
  border-radius: 20px;
  overflow: hidden;
  color: var(--ew-white);
  background-image:
    linear-gradient(rgba(0, 72, 119, 0.34), rgba(12, 50, 70, 0.38)),
    var(--ew-poster-image);
  background-position: center;
  background-size: cover;
  text-align: center;
  text-decoration: none;
  justify-self: end;
}
.ew-telegram-poster::after {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  content: "";
}
.ew-telegram-poster b,
.ew-telegram-poster i,
.ew-telegram-poster small,
.ew-telegram-poster span,
.ew-telegram-poster strong {
  position: relative;
  z-index: 1;
}
.ew-telegram-poster span {
  max-width: 420px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
}
.ew-telegram-poster strong {
  width: 100%;
  margin-top: 18px;
  padding: 17px 20px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  background: rgba(27, 157, 208, 0.58);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 26px !important;
  line-height: 34px;
}
.ew-telegram-poster i {
  display: inline-flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  order: 2;
  margin-top: 28px;
  border-radius: 50%;
  background: var(--ew-blue);
  font-style: normal;
  animation: ew-telegram 2.2s ease-in-out infinite;
}
.ew-telegram-poster i img {
  width: 34px;
  height: 29px;
}
.ew-telegram-poster strong {
  order: 3;
}
.ew-telegram-poster small {
  order: 4;
  max-width: 500px;
  margin-top: 56px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 28px;
}
.ew-telegram-poster b {
  order: 5;
  margin-top: 28px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}
.ew-about__grid,
.ew-faq__grid,
.ew-final-cta__grid,
.ew-phone-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 88px;
  align-items: center;
}
.ew-about__image {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}
.ew-about__image::before {
  display: none;
}
.ew-about__image img {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 655px;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}
.ew-kicker--light {
  border-color: var(--ew-line);
  color: var(--ew-muted);
}
.ew-about__content h3 {
  margin-bottom: 22px;
  color: var(--ew-orange-dark);
  font-size: 22px;
  text-transform: uppercase;
}
.ew-about__content p {
  color: var(--ew-muted);
}
.ew-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ew-benefit {

  padding: 24px;
  border: 1px solid #d2cbc8;
  border-radius: 16px;
  background: var(--ew-white);
}
.ew-benefit img {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
}
.ew-benefit h3 {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
}
.ew-benefit p {
  margin-bottom: 8px;
  color: var(--ew-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
}
.ew-benefits .ew-section-heading h2 {
  font-size: 48px;
  line-height: 58px;
}
.ew-benefits {
  width: 100%;
  max-width: 1328px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.ew-benefits::before {
  position: absolute;
  bottom: -205px;
  right: -400px;
  width: 700px;
  height: 700px;

 
  content: "";
  opacity: 0.2; 
  pointer-events: none;
  transform: translateX(-50%);
}
.ew-benefits > .ew-container {
  position: relative;
  z-index: 1;
}
.ew-phone-section {
  overflow: hidden;
  background: var(--ew-white);
}
.ew-check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.ew-check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
}
.ew-check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--ew-orange);
  content: "✓";
}
.ew-phone {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 9/18;
  margin-inline: auto;
  padding: 14px;
  border: 4px solid var(--ew-ink);
  border-radius: 46px;
  background: var(--ew-ink);
  box-shadow:
    40px 50px 0 var(--ew-orange),
    0 34px 80px rgba(36, 33, 31, 0.22);
}
.ew-phone__speaker {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 3;
  width: 88px;
  height: 20px;
  border-radius: 0 0 16px 16px;
  background: var(--ew-ink);
  transform: translateX(-50%);
}
.ew-phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: var(--ew-cream);
}
.ew-phone__track {
  display: flex;
  height: 100%;
  flex-direction: column;
  will-change: transform;
}
.ew-phone__track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.ew-faq {

}
.ew-faq__inner {
  width: min(calc(100% - 112px), 1104px);
}
.ew-faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  text-align: center;
}
.ew-faq__header img {
  width: 23px;
  height: 48px;
  object-fit: cover;
}
.ew-faq__header h2 {
  margin: 0;
  font-size: 48px;
  line-height: 58px;
}
.ew-accordion details {
  border-bottom: 1px solid var(--ew-line);
}
.ew-accordion summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}
.ew-accordion summary::-webkit-details-marker {
  display: none;
}
.ew-accordion summary span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ew-line);
  border-radius: 50%;
  color: var(--ew-orange);
  font-size: 22px;
  transition: transform 180ms ease;
}
.ew-accordion details[open] summary span {
  transform: none;
}
.ew-accordion summary span {
  font-size: 0;
}
.ew-accordion summary span::before {
  content: "+";
  font-size: 22px;
}
.ew-accordion details[open] summary {
  color: var(--ew-orange);
}
.ew-accordion details[open] summary span::before {
  content: "−";
}
.ew-accordion details p {
  max-width: 720px;
  padding: 0 54px 26px 0;
  color: var(--ew-muted);
}
.ew-reviews {
  position: relative;
  overflow: hidden;
}
.ew-reviews::before {
  position: absolute;
  top: 224px;
  left: -153px;
  width: 1009px;
  height: 672px;
  background: url("../images/new_img/byda.png") center/cover no-repeat;
  content: "";
  opacity: 0.32;
  pointer-events: none;
}
.ew-reviews .ew-container {
  position: relative;
  z-index: 1;
}
.ew-reviews__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}
.ew-reviews__header h2 {
  margin-bottom: 0;
  font-size: 48px;
  line-height: 58px;
}
.ew-reviews .ew-section-label {
  margin: 12px 0 0;
  color: var(--ew-muted);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-transform: none;
}
.ew-review-ratings {
  display: flex;
  gap: 16px;
}
.ew-review-ratings > div {
  display: flex;
  min-width: 179px;
  min-height: 88px;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid #d2cbc8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
}
.ew-review-ratings b {
  font-family: Arial, sans-serif;
  font-size: 64px;
  line-height: 1;
}
.ew-review-ratings small,
.ew-review-ratings span {
  display: block;
}
.ew-review-ratings strong {
  font-size: 20px;
}
.ew-review-ratings small {
  margin-top: 4px;
  color: var(--ew-muted);
  font-size: 14px;
  font-weight: 600;
}
.ew-carousel-controls {
  display: flex;
  gap: 8px;
}
.ew-carousel-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ew-line);
  border-radius: 50%;
  color: var(--ew-ink);
  background: var(--ew-white);
  font-size: 20px;
  cursor: pointer;
}
.ew-carousel-controls button:hover {
  color: var(--ew-white);
  background: var(--ew-orange);
}
.ew-review-viewport {
  overflow: hidden;
  touch-action: pan-y;
}
.ew-review-track {
  display: flex;
  gap: 20px;
  cursor: grab;
  transition: transform 420ms cubic-bezier(0.22, 0.7, 0.22, 1);
  will-change: transform;
}
.ew-review-track.is-dragging {
  cursor: grabbing;
  transition: none;
}
.ew-review-card {
  display: flex;
  width: calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
  min-height: 430px;
  padding: 24px;
  flex-direction: column;
  border: 0;
  border-radius: 16px;
  background: var(--ew-white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}
.ew-review-card:hover {
  border-color: rgba(243, 111, 33, 0.52);
  box-shadow: 0 18px 44px rgba(45, 38, 32, 0.12);
  transform: translateY(-8px) scale(1.015);
}
.ew-review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.ew-review-card__top > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ew-white);
  background: var(--ew-orange);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
}
.ew-review-card h3 {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--ew-line);
  font-size: 16px;
}
.ew-review-card__top p {
  margin-bottom: 0;
  color: #e0a400;
  font-size: 12px;
}
.ew-review-card blockquote {
  margin: 18px 0 24px;
  color: var(--ew-muted);
  font-size: 14px;
}
.ew-review-card__stars {
  margin: 0;
  color: #f4c400;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 2px;
}
.ew-review-card a {
  color: var(--ew-orange-dark);
  font-size: 12px;
  font-weight: 700;
}
.ew-final-cta {
  color: var(--ew-ink);

}
.ew-final-cta__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 707px);
  gap: 80px;
  min-height: 577px;
  padding: 24px 24px 24px 48px;
  border-radius: 32px;
  background: #FCF6EE;
}
.ew-final-cta__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ew-final-cta__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.ew-final-cta__heading img {
  width: 29px;
  height: 60px;
  margin-bottom: 8px;
  object-fit: cover;
}
.ew-final-cta h2 {
  margin: 0;
  font-size: 40px;
  line-height: 46px;
}
.ew-final-cta__heading p {
  margin: 0;
  color: var(--ew-muted);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.ew-final-cta__photo {
  height: 100%;
  min-height: 529px;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}
.ew-final-cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ew-inline-form,
.ew-modal form {
  display: grid;
  gap: 16px;
}
.ew-inline-form {
  padding: 0;
  border: 0;
  background: 0 0;
}
.ew-inline-form label,
.ew-modal label {
  display: grid;
  gap: 7px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
}
.ew-inline-form input,
.ew-modal input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  color: var(--ew-white);
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}
.ew-final-cta .ew-inline-form input {
  height: 53px;
  padding: 0 16px;
  border: 1px solid #d2cbc8;
  border-radius: 8px;
  color: var(--ew-ink);
  background: var(--ew-cream);
}
.ew-final-cta .ew-inline-form small {
  color: var(--ew-muted);
  font-size: 14px;
  line-height: 21px;
}
.ew-final-cta .ew-consent {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--ew-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.ew-final-cta .ew-consent input {
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  accent-color: var(--ew-orange);
}
.ew-final-cta .ew-consent a {
  color: inherit;
}
.ew-field-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.ew-inline-form input:focus,
.ew-modal input:focus {
  border-color: var(--ew-orange);
  box-shadow: 0 0 0 3px rgba(243, 111, 33, 0.2);
}
.ew-inline-form small,
.ew-modal small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
}
.ew-form-status {
  min-height: 20px;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}
.ew-form-status.is-error {
  color: #ffb2a8;
}


.ew-form-status-free.is-success {
color: #000;
    text-align: center;
    font-size: 18px;
}

.ew-form-status-questions.is-success {
color: #000;
    text-align: center;
    font-size: 18px;
}



.ew-form-status.is-success {
color: #ffffff;
    text-align: center;
    font-size: 18px;
}


.ew-footer {
  padding: 60px 0 26px;
  border-top: 1px solid var(--ew-orange);
  color: var(--ew-ink);
  background: var(--ew-cream);
}
.ew-footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 58px;
}
.ew-footer__top > div {
  display: grid;
  align-content: start;
  gap: 9px;
}
.ew-footer__group-toggle {
  width: 100%;
  margin-bottom: 12px;
  padding: 0;
  border: 0;
  color: var(--ew-ink);
  background: 0 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}
.ew-footer__group-links {
  display: grid;
  gap: 9px;
}
.ew-footer a {
  font-size: 12px;
  text-decoration: none;
}
.ew-footer a:hover {
  color: var(--ew-orange);
}
.ew-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  font-size: 11px;
}
.ew-footer__contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.ew-footer__contacts a img {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 50%;
  background: var(--ew-white);
  object-fit: contain;
}
.ew-footer__contacts .ew-button {
  width: 100%;
  margin-top: 6px;
}
.ew-footer__bottom nav {
  display: flex;
  gap: 32px;
}
.ew-footer__credit {
  font-size: inherit;
  font-weight: 600;
}
.ew-modal {
  width: min(calc(100% - 32px), 520px);
  padding: 40px;
  border: 0;
  border-radius: 8px;
  color: var(--ew-white);
  background: var(--ew-brown);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}
.ew-modal::backdrop {
  background: rgba(20, 18, 16, 0.76);
  backdrop-filter: blur(5px);
}
.ew-modal h2 {
  margin-bottom: 12px;
  font-size: 34px;
}
.ew-modal > p:not(.ew-section-label) {
  color: rgba(255, 255, 255, 0.66);
}
.ew-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  color: var(--ew-white);
  background: 0 0;
  font-size: 28px;
  cursor: pointer;
}
body.ew-menu-open {
  overflow: hidden;
}
@keyframes ew-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 111, 33, 0.62);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(243, 111, 33, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(243, 111, 33, 0);
  }
}
@keyframes ew-bars {
  to {
    transform: scaleY(0.72);
    transform-origin: bottom;
  }
}
@keyframes ew-telegram {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-9px) scale(1.05);
  }
}
@media (min-width: 961px) {
  .ew-telegram-section {
    padding-bottom: 111px;
  }
  .ew-about,
  .ew-benefits,
  .ew-faq,
  .ew-final-cta,
  .ew-footer,
  .ew-reviews {
    margin-top: 160px;
  }
  .ew-about {
    height: 750px;
    padding: 0;
  }
  .ew-about__grid {
    grid-template-columns: 528px minmax(0, 1fr);
    gap: 64px;
    height: 750px;
    align-items: start;
  }
  .ew-about__image {
    height: 750px;
  }
  .ew-about__content h2 {
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 58px;
  }
  .ew-about__content .ew-kicker {
    margin-bottom: 8px;
  }
  .ew-about__content h3 {
    margin-bottom: 47px;
  }
  .ew-about__content p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 21px;
  }
  .ew-benefits {
    height: 776px;
  }
  .ew-benefit {

  }
  .ew-benefits .ew-section-heading {
    margin-bottom: 49px;
  }
  .ew-benefit h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .ew-faq {
    height: 641px;
    padding: 0;
    overflow: hidden;
  }
  .ew-faq__header {
    margin-bottom: 32px;
  }
  .ew-accordion summary {
    min-height: 88px;
  }
  .ew-accordion details[open] summary {
    min-height: 52px;
  }
  .ew-accordion details p {
    max-width: none;
    margin: 0;
    padding: 0 80px 24px 0;
    font-size: 14px;
    line-height: 21px;
  }
  .ew-reviews {
    height: 900px;
    padding-block: 120px;
  }
  .ew-reviews__header {
    margin-bottom: 52px;
  }
  .ew-reviews::before {
    opacity: 0.9;
  }
  .ew-review-viewport {
    margin-left: 410px;
  }
  .ew-review-card {
    width: 390px;
    min-width: 390px;
    height: 430px;
  }
  .ew-review-card blockquote {
    margin-top: 24px;
  }
  .ew-carousel-controls {
    position: absolute;
    right: 0;
    bottom: -88px;
  }
  .ew-final-cta {
    height: 577px;
    padding: 0;
  }
  .ew-final-cta__grid {
    height: 577px;
    grid-template-rows: 529px;
  }
  .ew-final-cta__content {
    gap: 94px;
  }
  .ew-final-cta__photo {
    height: 529px;
    min-height: 0;
  }
  .ew-final-cta .ew-form-status:empty {
    display: none;
  }
  .ew-footer {
    padding-top: 64px;
  }
  .ew-footer__top {
    grid-template-columns: 407px 252px 252px 249px;
    gap: 56px;
    padding-bottom: 35px;
  }
  .ew-footer__top > div {
    gap: 14px;
  }
  .ew-footer h3 {
    margin-bottom: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ew-line);
  }
  .ew-footer__contacts .ew-button {
    height: 50px;
    margin-top: 0;
  }
  .ew-footer__contacts a img {
    width: 32px;
    height: 32px;
    padding: 0;
    background: 0 0;
  }
  .ew-footer__bottom {
    align-items: center;
    border-top: 0;
  }
}
@media (max-width: 1320px) {
  .ew-nav-item--reviews {
    display: none;
  }
  .ew-nav {
    gap: 16px;
  }
  .ew-menu-toggle {
    margin-left: 16px;
  }
}
@media (max-width: 1180px) {
  .ew-container {
    width: min(calc(100% - 64px), var(--ew-container));
  }
  .ew-nav {
    gap: 12px;
  }
  .ew-nav-item > a {
    font-size: 11px;
  }
  .ew-nav-item--legal {
    display: none;
  }
  .ew-hero__grid {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 42px;
  }
  .ew-legal__grid,
  .ew-telegram-grid {
    gap: 48px;
  }
  .ew-about__grid,
  .ew-faq__grid,
  .ew-final-cta__grid,
  .ew-phone-section__grid {
    gap: 54px;
  }
}
@media (max-width: 1050px) {
  .ew-header__inner {
    width: 100%;
    padding-inline: 32px;
  }
  .ew-nav {
    display: none;
  }
  .ew-menu-toggle {
    margin-left: auto;
  }
}
@media (max-width: 960px) {
  :root {
    --ew-header: 76px;
  }
  .ew-container {
    width: min(calc(100% - 40px), 760px);
  }
  .ew-telegram-section .ew-container {
    width: min(calc(100% - 40px), 760px);
  }
  .ew-header__inner {
    width: 100%;
    padding-inline: 32px;
    padding-block: 0;
    gap: 0;
  }
  .ew-nav {
    display: none;
  }
  .ew-menu-toggle {
    display: flex;
    margin-left: 0;
    border: 0;
    border-radius: 0;
    background: 0 0;
  }
  .ew-hero,
  .ew-hero__grid {
    min-height: auto;
  }
  .ew-hero__grid {
    grid-template-columns: 1fr;
    padding-block: 72px;
  }
  .ew-hero__content {
    max-width: 720px;
    padding-left: 0;
  }
  .ew-price {
    max-width: 520px;
    margin-top: 0;
  }
  .ew-about__grid,
  .ew-faq__grid,
  .ew-final-cta__grid,
  .ew-legal__grid,
  .ew-phone-section__grid,
  .ew-telegram-grid {
    grid-template-columns: 1fr;
  }
  .ew-about__image {
    max-width: 680px;
  }
  .ew-telegram-poster {
    justify-self: center;
  }
  .ew-topic-list {
    min-height: 0;
  }
  .ew-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ew-faq__grid > div:first-child,
  .ew-phone-section__grid > div:first-child {
    max-width: 680px;
  }
  .ew-review-card {
    width: calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }
  .ew-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .ew-container {
    width: calc(100% - 40px);
  }
  .ew-telegram-section .ew-container {
    width: calc(100% - 40px);
  }
  .ew-header__inner {
    width: 100%;
  }
  .ew-logo img {
    width: 214px;
    height: auto;
  }
  .ew-menu-toggle {
    display: flex;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    margin-right: 0;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .ew-menu-toggle span {
    height: 3px;
    margin: 0;
  }
  .ew-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(13px) rotate(45deg);
  }
  .ew-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
  }
  .ew-section {
    padding-block: 64px;
  }
  .ew-legal {
    padding: 80px 0 78px;
  }
  .ew-legal::after {
    background-position: center bottom 139px;
    background-size: 760px auto;
    opacity: 0.12;
  }
  .ew-legal h2 {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 40px;
  }
  .ew-legal__badge {
    width: 100%;
    margin-bottom: 31px;
    padding: 16px 24px;
    font-size: 20px;
    line-height: 24px;
  }
  .ew-legal .ew-lead {
    font-size: 16px;
    line-height: 22px;
  }
  .ew-service-list {
    gap: 12px;
    margin: 32px 0 31px;
  }
  .ew-service-list div {
    min-height: 46px;
    padding: 10px 12px;
    gap: 8px;
    font-size: 16px;
    line-height: 20px;
  }
  .ew-service-list span {
    font-size: 18px;
  }
  .ew-page h2 {
    font-size: 32px;
  }
  .ew-hero {
    background-image:
      linear-gradient(
        180deg,
        rgba(45, 39, 32, 0.99) 0,
        rgba(45, 39, 32, 0.97) 58%,
        rgba(45, 39, 32, 0.87) 78%,
        rgba(45, 39, 32, 0.76) 100%
      ),
      var(--ew-hero-image);
    background-position: 40% center;
  }
  .ew-hero::before {
    top: 90px;
    left: -280px;
    width: 600px;
    height: 560px;
    background-size: 560px auto;
    filter: grayscale(1) brightness(1.7);
    opacity: 0.3;
    -webkit-mask-image: linear-gradient(
      90deg,
      #000 0%,
      #000 72%,
      transparent 100%
    );
    mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
  }
  .ew-hero__rings {
    top: 520px;
    left: -130px;
    width: 300px;
    height: 260px;
    opacity: 0.24;
  }
  .ew-hero__grid {
    gap: 36px;
    padding-block: 80px 54px;
  }
  .ew-kicker {
    margin-bottom: 23px;
    padding: 9px 14px;
    border-color: var(--ew-orange);
    font-size: 14px;
    line-height: 1.2;
  }
  .ew-hero .ew-eyebrow {
    margin-bottom: 19px;
    font-size: 16px;
    line-height: 1.2;
  }
  .ew-hero h1 {
    margin-bottom: 32px;
    font-size: 40px;
    font-weight: 600;
    white-space: nowrap;
  }
  .ew-hero__location {
    margin-bottom: 44px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
  }
  .ew-hero__location span {
    display: block;
  }
  .ew-hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
    margin-bottom: 44px;
  }
  .ew-hero__actions .ew-button {
    grid-column: 1/-1;
    width: 100%;
    height: 51px;
    min-height: 0;
    padding-block: 0;
    font-size: 16px;
  }
  .ew-hero__socials {
    display: flex;
    grid-column: 1/-1;
    gap: 16px;
  }
  .ew-hero__actions .ew-social {
    width: 56px;
    height: 56px;
    justify-self: start;
  }
  .ew-benefit-grid,
  .ew-hero__features,
  .ew-service-list {
    grid-template-columns: 1fr;
  }
  .ew-hero__features {
    font-size: 16px;
    font-weight: 600;
  }
  .ew-hero-graphic {
    margin-top: 28px;
  }
  .ew-price {
    height: 587px;
    min-height: 587px;
    padding: 16px;
  }
  .ew-price__label {
    margin-bottom: 16px;
  }
  .ew-price > strong {
    margin-bottom: 11px;
    font-size: 25px;
    line-height: 34px;
  }
  .ew-price > span + .ew-price__divider {
    margin: 21px 0 19px;
  }
  .ew-countdown__label {
    margin-bottom: 8px;
  }
  .ew-countdown {
    grid-template-columns: repeat(4, minmax(0, 48px));
  }
  .ew-countdown b {
    font-size: 18px;
  }
  .ew-countdown small {
    font-size: 14px;
    line-height: 16px;
  }
  .ew-countdown div:last-child small {
    width: auto;
    min-width: 44px;
    margin-inline: auto;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }
  .ew-countdown + .ew-countdown__complete + .ew-price__divider,
  .ew-countdown__complete[hidden] + .ew-price__divider {
    margin: 11px 0 21px;
  }
  .ew-apartment-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: 52px;
    margin-bottom: 12px;
  }
  .ew-apartment-tabs button {
    font-size: 16px;
  }
  .ew-price__summary {
    height: 136px;
  }
  .ew-price__summary p,
  .ew-price__summary span {
    font-size: 16px;
    line-height: 20px;
  }
  .ew-price__summary p {
    margin-top: 8px;
  }
  .ew-price .ew-payment-note {
    margin-top: 26px;
    font-size: 16px;
    line-height: 24px;
  }
  .ew-about__grid,
  .ew-faq__grid,
  .ew-final-cta__grid,
  .ew-legal__grid,
  .ew-phone-section__grid,
  .ew-telegram-grid {
    gap: 34px;
  }
  .ew-legal__grid {
    gap: 31px;
  }
  .ew-modal {
    padding: 28px 22px;
  }
  .ew-consultation {
    height: 444px;
    min-height: 444px;
    margin-top: 0;
    padding: 15px;
  }
  .ew-consultation h3 {
    margin-bottom: 26px;
    font-size: 24px;
    line-height: 30px;
    white-space: nowrap;
  }
  .ew-consultation > p {
    max-width: 296px;
    font-size: 16px;
    line-height: 22px;
  }
  .ew-consultation > .ew-button {
    width: 100%;
    height: 53px;
    min-height: 53px;
    margin-top: 20px;
    border-radius: 12px;
  }
  .ew-consultation__socials {
    margin-top: 24px;
  }
  .ew-consultation__socials .ew-social {
    width: 56px;
    height: 56px;
  }
  .ew-consultation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 16px;
    margin-top: 31px;
    padding-top: 33px;
    text-align: left;
  }
  .ew-telegram-section {
    padding: 64px 0 80px;
  }
  .ew-telegram-section .ew-section-heading {
    margin-bottom: 52px;
  }
  .ew-telegram-section .ew-section-heading h2 {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 40px;
  }
  .ew-telegram-intro {
    font-size: 16px;
    line-height: 22px;
  }
  .ew-topic-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ew-topic,
  .ew-topic:last-child {
    min-height: 98px;
    grid-column: auto;
    padding: 16px 14px;
    border: 1px solid #d2cbc8;
    border-radius: 10px;
    background: var(--ew-white);
  }
  .ew-topic h3 {
    margin-bottom: 6px;
    font-size: 19px;
    line-height: 24px;
  }
  .ew-topic p {
    font-size: 16px;
    line-height: 22px;
  }
  .ew-channel-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 46px 0 32px;
    padding-top: 0;
  }
  .ew-channel-stats div {
    padding: 0;
    border: 0;
  }
  .ew-channel-stats div:not(:first-child) {
    padding-left: 12px;
    border-left: 1px solid #d2cbc8;
  }
  .ew-channel-stats strong {
    font-size: 30px;
  }
  .ew-channel-stats span {
    margin-top: 10px;
    font-size: 11px;
    line-height: 15px;
  }
  .ew-telegram-actions {
    flex-direction: column;
    gap: 12px;
  }
  .ew-telegram-actions .ew-button {
    max-width: none;
    min-height: 53px;
    border-radius: 10px;
    font-size: 15px;
  }
  .ew-telegram-actions .ew-button--telegram-outline {
    max-width: none !important;
  }
  .ew-telegram-poster {
    max-width: 520px;
    min-height: 0;
    padding: 34px 28px;
    border-radius: 12px;
  }
  .ew-telegram-poster::after {
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
  }
  .ew-telegram-poster span {
    font-size: 30px;
  }
  .ew-telegram-poster i {
    width: 64px;
    height: 64px;
    margin-top: 24px;
  }
  .ew-telegram-poster strong {
    width: 100%;
    margin-top: 18px;
    padding: 12px 8px;
    font-size: 15px !important;
    line-height: 20px;
  }
  .ew-telegram-poster small {
    margin-top: 38px;
    font-size: 16px;
    line-height: 22px;
  }
  .ew-telegram-poster b {
    margin-top: 20px;
    font-size: 40px;
  }
  .ew-about__image {
  
  }
  .ew-about {
    padding-bottom: 79px;
  }
  .ew-benefits {
    height: auto;
    min-height: 0;
    padding: 80px 0 64px;
  }
  .ew-benefits .ew-container {
    position: relative;
    width: 100%;
  }
  .ew-benefits .ew-container::after {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
    height: 8px;
    border-radius: 8px;
    background: linear-gradient(
      90deg,
      var(--ew-orange) 0 var(--ew-benefit-progress, 29%),
      var(--ew-white) var(--ew-benefit-progress, 29%) 100%
    );
    content: "";
    pointer-events: none;
  }
  .ew-benefits .ew-section-heading {
    width: calc(100% - 40px);
    margin: 0 auto 48px;
  }
  .ew-benefit-grid {
    display: flex;
    gap: 12px;
    padding: 0 20px 44px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }
  .ew-benefit-grid::-webkit-scrollbar {
    display: none;
  }
  .ew-benefit-grid::after {
    display: none;
  }
  .ew-benefit {
    width: 265px;
    height: auto;
    min-width: 265px;
    min-height: 220px;
    padding: 24px;
    overflow-wrap: anywhere;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .ew-benefit h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .ew-benefits::before {
    bottom: -415px;
    opacity: 0.2;
  }
  .ew-benefits .ew-section-heading h2,
  .ew-faq__header h2,
  .ew-reviews__header h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .ew-faq__inner {
    width: calc(100% - 40px);
  }
  .ew-faq {
    height: auto;
    min-height: 0;
    padding: 96px 0 64px;
    overflow: visible;
  }
  .ew-faq__header {
    margin-bottom: 28px;
  }
  .ew-accordion summary {
    font-size: 20px;
    line-height: 24px;
  }
  .ew-accordion summary span {
    width: 40px;
    height: 40px;
    font-size: 0;
  }
  .ew-accordion details p {
    padding-right: 0;
    font-size: 15px;
    line-height: 23px;
  }
  .ew-reviews {
    height: auto;
    min-height: 0;
    padding: 80px 0 72px;
  }
  .ew-reviews::before {
    top: 300px;
    left: 22px;
    width: 330px;
    height: 430px;
    opacity: 0.55;
  }
  .ew-review-ratings {
    gap: 8px;
    margin-top: 28px;
  }
  .ew-review-ratings > div {
    min-width: 0;
    flex: 1 1 0;
    gap: 10px;
    padding: 12px;
  }
  .ew-review-ratings b {
    font-size: 52px;
  }
  .ew-review-viewport {
    margin-top: 173px;
    margin-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }
  .ew-review-viewport::-webkit-scrollbar {
    display: none;
  }
  .ew-review-track {
    width: max-content;
    cursor: auto;
    transition: none !important;
    transform: none !important;
  }
  .ew-review-card {
    width: 290px;
    min-width: 290px;
    height: auto;
    min-height: 430px;
    overflow-wrap: anywhere;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .ew-carousel-controls {
    width: min(335px, 100%);
    height: 8px;
    margin-top: 22px;
    border-radius: 8px;
    background: linear-gradient(
      90deg,
      var(--ew-orange) 0 var(--ew-review-progress, 29%),
      var(--ew-white) var(--ew-review-progress, 29%) 100%
    );
  }
  .ew-carousel-controls button {
    display: none;
  }
  .ew-final-cta {
    padding: 160px 0 0;
  }
  .ew-final-cta__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    height: auto;
    grid-template-rows: none;
    min-height: 0;
    padding: 16px;
    border-radius: 16px;
  }
  .ew-final-cta__content {
    gap: 32px;
  }
  .ew-final-cta h2 {
    font-size: 24px;
    line-height: 29px;
    white-space: nowrap;
  }
  .ew-final-cta__heading img {
    width: 23px;
    height: 48px;
  }
  .ew-final-cta .ew-inline-form input {
    font-size: 16px;
    font-weight: 400;
  }
  .ew-final-cta .ew-inline-form {
    gap: 20px;
  }
  .ew-final-cta .ew-form-status:empty {
    display: none;
  }
  .ew-final-cta .ew-consent {
    font-size: 16px;
    line-height: 22px;
  }
  .ew-final-cta__photo {
    height: 232px;
    min-height: 232px;
    border-radius: 12px;
    order: 0;
  }
  .ew-phone {
    width: min(280px, 78vw);
    box-shadow:
      24px 32px 0 var(--ew-orange),
      0 24px 60px rgba(36, 33, 31, 0.2);
  }
  .ew-reviews__header {
    display: block;
    align-items: flex-start;
  }
  .ew-carousel-controls {
    margin-top: 22px;
  }
  .ew-footer__logo img {
    width: 335px;
    height: auto;
  }
  .ew-footer {
    min-height: 819px;
    height: auto;
    padding: 60px 0 36px;
  }
  .ew-footer__top {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 24px;
  }
  .ew-footer__logo {
    display: block;
    padding-bottom: 60px;

  }
  .ew-footer__top > div {
    display: block;
  }
  .ew-footer__group-toggle {
    position: relative;
    height: 80px;
    margin: 0;
    padding: 20px 32px 0 0;
    border-bottom: 1px solid var(--ew-line);
    font-size: 20px;
    cursor: pointer;
  }
  .ew-footer__group-toggle::after {
    position: absolute;
    top: 31px;
    right: 4px;
    width: 12px;
    height: 12px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    content: "";
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }
  .ew-footer__group-toggle[aria-expanded="true"]::after {
    transform: rotate(225deg);
  }
  .ew-footer__group-links {
    display: none;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--ew-line);
  }
  .ew-footer__group.is-open .ew-footer__group-links {
    display: grid;
  }
  .ew-footer__group-links > a {
    padding: 8px 0;
    font-size: 16px;
  }
  .ew-footer__contacts .ew-button {
    display: flex;
    height: 51px;
    margin-top: 20px;
  }
  .ew-footer__bottom {
    gap: 24px;
    padding-top: 7px;
    flex-direction: column;
    font-size: 16px;
    line-height: 1.35;
  }
  .ew-footer__bottom > span:first-child {
    font-weight: 600;
  }
  .ew-footer__bottom > span:last-child {
    max-width: 290px;
  }
  .ew-footer__bottom nav {
    flex-direction: column;
    gap: 18px;
  }
  .ew-footer__bottom a {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .ew-container {
    width: calc(100% - 24px);
  }
  .ew-hero h1 {
    font-size: 36px;
    white-space: normal;
  }
  .ew-price {
    height: auto;
    min-height: 0;
    padding: 16px;
  }
  .ew-price__summary {
    height: auto;
    min-height: 136px;
  }
  .ew-countdown div {
    padding-inline: 2px;
  }
  .ew-reviews__header {
    display: block;
  }
  .ew-carousel-controls {
    margin-top: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  ::after,
  ::before {
    scroll-behavior: auto !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
}
/* Codex Telegram parity 20260715. */
.ew-telegram-grid {
  align-items: start;
}
.ew-topic-list {
  align-self: start;
}
.ew-topic {
  min-height: 132px;
  align-content: center;
  border-radius: 14px;
}
.ew-topic h3 {
  min-height: 0;
}
.ew-channel-stats {
  margin: 64px 0 72px;
  padding-top: 0;
}
.ew-telegram-poster {
  align-self: start;
  max-width: 625px;
  border-radius: 16px;
}
.ew-telegram-poster::after {
  display: none !important;
}
.ew-telegram-poster small {
  margin-top: 52px;
}
@media (min-width: 1181px) {
  .ew-telegram-grid {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 40%);
    gap: 72px;
  }
}
@media (min-width: 961px) and (max-width: 1180px) {
  .ew-telegram-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .ew-topic-list {
    width: min(100%, 870px);
    margin-inline: auto;
  }
  .ew-telegram-poster {
    width: min(100%, 625px);
    justify-self: center;
  }
  .ew-channel-stats {
    margin: 52px 0 40px;
  }
  .ew-telegram-actions {
    justify-content: center;
  }
}
@media (max-width: 960px) {
  .ew-telegram-poster {
    width: min(100%, 625px);
    justify-self: center;
  }
  .ew-channel-stats {
    margin: 46px 0 32px;
  }
}
@media (max-width: 767px) {
  .ew-topic h3 {
    min-height: 0;
  }
}
@media (max-width: 620px) {
  .ew-telegram-poster {
    border-radius: 12px;
  }
  .ew-telegram-poster small {
    margin-top: 34px;
  }
}
/* Codex responsive overflow guard 20260715. */
@media (min-width: 961px) and (max-width: 1180px) {
  .ew-review-viewport {
    contain: paint;
    width: min(100%, calc(100vw - 474px));
    max-width: 534px;
    overflow-x: hidden;
  }
  .ew-review-track {
    max-width: 100%;
    transform: none !important;
  }
  .ew-footer {
    height: auto;
    min-height: 0;
  }
  .ew-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 48px;
  }
  .ew-footer__logo {
    grid-column: 1/-1;
  }
}
@media (max-width: 960px) {
  .ew-review-viewport {
    contain: paint;
    max-width: 100%;
    overflow-x: auto;
  }
  .ew-review-track {
    transform: none !important;
  }
}
/* codex-telegram-responsive-content-20260716 */
.ew-telegram-section .ew-container {
  width: min(calc(100% - 112px), var(--ew-container));
  max-width: var(--ew-container);
}
.ew-telegram-section .ew-section-heading {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.ew-telegram-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, clamp(360px, 36vw, 520px));
  gap: clamp(32px, 4vw, 72px);
  align-items: end;
}
.ew-telegram-poster {
  max-width: 520px;
}
@media (max-width: 1180px) {
  .ew-telegram-grid {
    grid-template-columns: 1fr;
  }
  .ew-telegram-poster {
    justify-self: center;
    width: min(100%, 520px);
  }
  .ew-channel-stats {
    margin-bottom: 40px;
  }
  .ew-telegram-actions {
    max-width: 680px;
  }
}
@media (max-width: 760px) {
  .ew-telegram-section .ew-section-heading {
    margin-bottom: 42px;
  }
  .ew-topic-grid {
    grid-template-columns: 1fr;
  }
  .ew-topic:last-child {
    grid-column: auto;
  }
  .ew-topic {
    min-height: 0;
  }
  .ew-telegram-poster {
    max-width: 420px;
  }
  .ew-telegram-poster small {
    max-width: 290px;
  }
}
@media (max-width: 620px) {
  .ew-telegram-section .ew-container {
    width: calc(100% - 40px);
  }
} /* codex-telegram-mobile-poster-tighten-20260716 */
@media (max-width: 620px) {
  .ew-telegram-poster {
    aspect-ratio: auto;
    min-height: 430px;
    padding: 30px 22px;
  }
  .ew-telegram-poster span {
    font-size: 28px;
    line-height: 1.08;
  }
  .ew-telegram-poster i {
    width: 56px;
    height: 56px;
    margin-top: 18px;
  }
  .ew-telegram-poster i img {
    width: 28px;
    height: 24px;
  }
  .ew-telegram-poster strong {
    margin-top: 14px;
    padding: 10px 8px;
    font-size: 14px;
    line-height: 18px;
  }
  .ew-telegram-poster small {
    margin-top: 24px;
    font-size: 15px;
    line-height: 20px;
  }
  .ew-telegram-poster b {
    margin-top: 14px;
    font-size: 34px;
  }
} /* Codex Figma hover animation 20260717 */
.ew-benefit,
.ew-service-list div {
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}
.ew-service-list span {
  transition: transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .ew-benefit:hover,
  .ew-service-list div:hover {
    border-color: rgba(203, 77, 0, 0.42);
    box-shadow: 0 14px 34px rgba(45, 39, 32, 0.1);
    transform: translateY(-3px);
  }
  .ew-service-list div:hover span {
    transform: translateX(3px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ew-benefit,
  .ew-service-list div,
  .ew-service-list span {
    transition: none;
  }
  .ew-benefit:hover,
  .ew-service-list div:hover {
    transform: none;
  }
}
/* Codex hero price tabs stability 20260717 */
.ew-apartment-tabs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ew-price > strong,
.ew-price__summary strong,
.ew-countdown b {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings:
    "tnum" 1,
    "lnum" 1;
}

.ew-price > strong,
.ew-price__summary strong {
  display: flex;
  align-items: baseline;
  gap: 0.18em;
  white-space: nowrap;
}

.ew-price-number {
  display: inline-block;
  min-width: 7.7ch;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings:
    "tnum" 1,
    "lnum" 1;
}

.ew-currency-symbol {
  display: inline-block;
  font-family: inherit;
  font-size: 0.82em;
  font-weight: inherit;
  line-height: 1;
  transform: translateY(-0.02em);
}

.ew-price__summary .ew-price-number {
  min-width: 7.7ch;
}

@media (max-width: 480px) {
  .ew-price > strong {
    gap: 0.14em;
    font-size: clamp(32px, 9vw, 40px);
  }

  .ew-price__summary strong {
    gap: 0.14em;
  }
}
.ew-countdown small {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

/* Codex legal Telegram/meta cleanup 20260717 */
@media (min-width: 621px) {
  .ew-consultation ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0 30px;
  }

  .ew-consultation li {
    white-space: nowrap;
  }
}

/* Codex laptop landing heading hotfix 20260717 */
@media (min-width: 901px) and (max-width: 1180px) {
  body.ew-page .ew-container,
  body.ew-page .ew-faq__header,
  body.ew-page .ew-section-heading {
    width: min(100%, calc(100vw - 64px));
    max-width: calc(100vw - 64px);
    box-sizing: border-box;
  }

  body.ew-page .ew-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 42vw);
    gap: clamp(28px, 3vw, 44px);
  }

  body.ew-page .ew-hero__content h1 {
    max-width: 100%;
    font-size: clamp(44px, 5.2vw, 56px);
    line-height: 1.12;
  }

  body.ew-page .ew-section-heading h2,
  body.ew-page .ew-faq__header h2 {
    max-width: 100%;
    font-size: clamp(36px, 4.8vw, 48px);
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (min-width: 901px) and (max-width: 1060px) {
  body.ew-page .ew-container,
  body.ew-page .ew-faq__header,
  body.ew-page .ew-section-heading {
    width: min(100%, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
  }

  body.ew-page .ew-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 42vw);
    gap: 28px;
  }

  body.ew-page .ew-hero__content h1 {
    font-size: clamp(40px, 5vw, 48px);
  }
}
