@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800&display=swap");

@font-face {
  font-family: "Gilroy-Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Gilroy-Bold"), url("../fonts/Gilroy-Bold.woff") format("woff");
}

@font-face {
  font-family: "Gilroy-Medium";
  font-style: normal;
  font-weight: normal;
  src: local("Gilroy-Medium"), url("../fonts/Gilroy-Medium.woff") format("woff");
}

@font-face {
  font-family: "Gilroy-Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Gilroy-Regular"), url("../fonts/Gilroy-Regular.woff") format("woff");
}

@font-face {
  font-family: "Circular Std";
  font-style: normal;
  font-weight: normal;
  src: local("Circular Std"), url("../fonts/Circular Std Medium 500.ttf") format("truetype");
}

@font-face {
  font-family: "Cambay-Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Cambay-Regular"), url("../fonts/cambay/Cambay-Regular.woff") format("woff");
}

@font-face {
  font-family: "DejaVu Sans Bold";
  src: url("../fonts/dejavusans/dejavu-sans-bold-webfont.eot");
  src: url("../fonts/dejavusans/dejavu-sans-bold-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/dejavusans/dejavu-sans-bold-webfont.woff2") format("woff2"),
    url("../fonts/dejavusans/dejavu-sans-bold-webfont.woff") format("woff"),
    url("../fonts/dejavusans/dejavu-sans-bold-webfont.ttf") format("truetype"),
    url("../fonts/dejavusans/dejavu-sans-bold-webfont.svg#dejavu_sansbold") format("svg");
}

@font-face {
  font-family: "DejaVu Sans Regular";
  src: url("../fonts/SF-Georgian.ttf") format("truetype");
}

@font-face {
  font-family: "SF-Georgian";
  src: url("../fonts/SF-Georgian.ttf") format("truetype");
}

:root {
  --header-height: 78px;
  --white: #ffffff;
  --black: #000000;
  --text: #181818;
  --blue: #2354a5;
  --soft-blue: #3c74ff;
  --gray: #888fa0;
  --section: #e5e5e5;
  --line: #e7e9ec;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-family: "Gilroy-Regular", "DejaVu Sans Regular", sans-serif;
}
body {
  margin: 0;
  background: #f3f5f8;
  color: var(--text);
  font-family: inherit;
}
body, h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg, svg * { font-family: inherit; }

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

.btn {
  outline: 0;
  border: 1px solid #e6ebf4;
  border-radius: 35px;
  background: transparent;
  padding: 0 32px;
  cursor: pointer;
  color: var(--blue);
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Gilroy-Medium";
  text-decoration: none;
}
.btn--main { border-color: var(--blue); color: var(--blue); }
.btn--white-filled { background: var(--white); border-color: var(--white); color: var(--text); }
.btn__filled {
  margin: 0 auto;
  background: var(--soft-blue);
  border-radius: 12px;
  height: 48px;
  font-weight: 700;
  font-size: 16px;
  max-width: 310px;
  color: var(--white);
}
.btn__bold { font-family: "Gilroy-Bold", "DejaVu Sans Bold", sans-serif; }
.btn.size-m { min-height: 60px; font-size: 16px; }

.slide-buttons {
  display: flex;
  gap: 0 24px;
  align-items: center;
  margin-left: auto;
}
.how__content__hood .buttons,
.experts-slide-buttons-wrapper { display: none; }
.reviews-slide-buttons-wrapper {
  display: flex;
  gap: 0 24px;
  margin-left: auto;
  align-items: flex-end;
}
.slider-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #e6ebf4;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity .2s ease-in-out;
}
.slider-button:disabled {
  opacity: .45;
  cursor: default;
}
.slider-button img {
  width: 24px;
  height: 24px;
}
[data-slider] {
  --slider-gap: 16px;
  --slide-width: 100%;
  display: flex;
  gap: 0 var(--slider-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
[data-slider]::-webkit-scrollbar { display: none; }
[data-slider] > * {
  flex: 0 0 var(--slide-width);
  scroll-snap-align: start;
}

.navbar {
  width: 100%;
  height: var(--header-height);
  font-family: "Gilroy-Medium";
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.navbar .data-container {
  padding: 0 24px;
  height: 100%;
}
.navbar__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__item {
  justify-items: center;
  align-items: center;
  gap: 12px;
  display: flex;
  flex: 0 1 auto;
  height: inherit;
}
.logo {
  display: flex;
  height: inherit;
  align-items: center;
}
.logo a {
  width: 112px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.logo img { width: 80px; }
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  margin-top: -5px;
  margin-right: 16px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 3px;
  background: var(--black);
  margin: 3px 0;
}
.nav-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
}
.nav-menu__item {
  color: var(--text);
  font-size: 14px;
  position: relative;
  height: inherit;
  cursor: pointer;
}
.nav-menu__item a {
  color: var(--text);
  text-decoration: none;
  height: inherit;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.nav-menu__item::after {
  opacity: 0;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  background: var(--blue);
  position: absolute;
  bottom: 5px;
  left: 0;
  transition: all .4s ease-in-out;
}
.nav-menu__item:hover::after,
.nav-menu__item--active::after { opacity: 1; }
.lang-menu {
  display: flex;
  align-items: center;
  margin-left: 16px;
  background: transparent;
  border: 0;
  padding: 0;
  position: relative;
}
.lang-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(24, 24, 24, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
}
.lang-menu__chosen {
  display: flex;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 4px 8px;
  cursor: pointer;
}
.lang-menu__icon { display: flex; align-items: center; }
.lang-menu__icon img { width: 24px; height: 16px; }
.lang-menu__arrow { margin-left: 8px; }
.lang-modal {
  position: absolute;
  display: inline-block;
  top: 42px;
  right: 0;
  left: -68px;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s ease-in-out, transform .22s ease-in-out, visibility .22s ease-in-out;
}
.lang-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lang-menu.is-open .lang-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-context {
  width: 135px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid #eef0f7;
  list-style: none;
  display: flex;
  flex-flow: column;
  padding: 9px 18px;
  margin: 0;
  position: absolute;
}
.lang-context__item button {
  width: 100%;
  height: 24px;
  margin: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: "SF-Georgian", Inter, serif;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.lang-context__item button.active {
  font-family: "Gilroy-Bold", "DejaVu Sans Bold", sans-serif;
}
.lang-context__item img {
  width: 15px;
  height: 13px;
}

@media (max-width: 1023px) {
  .lang-modal {
    left: auto;
    right: 0;
    top: 46px;
  }
}

@media (max-width: 520px) {
  .lang-context {
    width: 128px;
    padding: 8px 14px;
  }
  .lang-context__item button {
    font-size: 13px;
  }
}
.actions { display: flex; align-items: center; height: inherit; }
.actions .btn {
  height: 48px;
  border-color: #eef0f7;
  color: #2354a5;
  background: var(--white);
  font-size: .875rem;
  line-height: 1.25;
}

.container-main-page { width: 100%; margin: 0 auto; padding-top: var(--header-height); }

.intro {
  padding: 24px;
  background: var(--white);
  width: 100%;
}
.intro__container { display: flex; }
.intro__info { flex: 1 0 723px; }
.intro__info__title { margin: 20px 0 40px !important; }
.intro__info h1 {
  font: 66px "Gilroy-Bold", "DejaVu Sans Bold", sans-serif;
  font-feature-settings: "case" on;
  background: linear-gradient(91.32deg, #060923 20%, #2d71f6 110.12%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.intro__info h3 {
  font: 20px "Gilroy-Regular", "DejaVu Sans Regular", sans-serif;
  color: var(--gray);
  line-height: 30px;
  width: 571px;
}
.reviews-cont {
  display: flex;
  padding-top: 48px;
  padding-bottom: 16px;
}
.review-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 24px;
}
.review-count {
  display: flex;
  align-items: center;
}
.review-count img {
  margin-right: 8px;
}
.review-count span {
  font: 23px "Gilroy-Bold", "DejaVu Sans Bold", sans-serif;
  color: #181818;
}
.review-cont p {
  color: var(--gray);
  font-size: 16px;
}
.intro__acctions {
  margin: 48px 0 199px;
}
.intro-app-download {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.intro-app-download__label {
  margin-bottom: 16px;
  font-family: "Gilroy-Regular", "DejaVu Sans Regular", sans-serif;
font-weight: 510;
font-style: Medium;
font-size: 16px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
text-transform: lowercase;
color: #737DA3;

}
.intro-app-download__links {
  display: flex;
  align-items: center;
  gap: 35px;
}
.intro-app-download__store {
  display: block;
  width: 150px;
  height: 50px;
}
.intro-app-download__store img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}


.button-style { font-size: 16px; }
.button-size {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  width: 100%;
}
.arrow {
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
}
.right { transform: rotate(-45deg); margin-top: 2px; }
.intro__poster {
  position: relative;
  flex: 1 0 25%;
}
.intro__poster-card {
  position: absolute;
  right: 0;
  top: 45%;
  transform: translateY(-45%);
}
.intro__poster-card img { width: 569px; }

.how {
  padding-left: 12px;
  background: var(--section);
}
.how__content {
  display: flex;
  flex-flow: column;
}
.how__content__hood {
  margin: 80px 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.how__title,
.works__header {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
}
.cards {
  --slider-gap: 40px;
}
.cards__item {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.cards__pic {
  border-radius: 12px 12px 0 0;
}
.cards__pic img {
  width: 100%;
  vertical-align: middle;
}
.cards__info {
  background: var(--white);
  border-radius: 0 0 12px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cards__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 32px;
}
.cards__title div:first-child {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.cards__title div:last-child {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
.cards__bullets {
  display: flex;
  flex-flow: column;
  padding: 0 32px 10px;
  min-height: 156px;
  flex: 1;
}
.cards__bullet-item {
  position: relative;
  padding: 10px 16px;
  max-width: 290px;
  font-family: "Gilroy-Medium";
  font-size: 16px;
  line-height: normal;
}
.cards__bullet-item:first-child { padding: 0 16px 10px; }
.cards__bullet-item::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  top: 16px;
  left: 0;
}
.cards__bullet-item:first-child::before { top: 6px; }

.why {
  display: flex;
  background: var(--section);
  padding-top: 192px;
  padding-bottom: 160px;
}
.why__content {
  display: flex;
  justify-content: space-between;
}
.why__story {
  flex: 0 0 496px;
  padding-top: 98px;
}
.why__title {
  font-feature-settings: "case" on;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--text);
  margin-bottom: 48px;
}
.why__text {
  font-size: 18px;
  font-weight: 400;
  color: rgba(24, 24, 24, .8);
  line-height: 28px;
  margin-bottom: 48px;
}
.why__features {
  display: flex;
  align-items: center;
  flex-flow: row-reverse;
  position: relative;
}
.why__poster {
  position: relative;
}
.why__images {
  background: var(--white);
  padding: 24px;
  border-radius: 32px;
}
.why__images img {
  border-radius: 12px;
  vertical-align: middle;
}
.why__list {
  position: absolute;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
  border-radius: 32px;
  padding: 32px;
  right: 388px;
  min-width: 392px;
  top: -32px;
}
.why__list-item {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.why__list-item img {
  width: 24px;
  height: 24px;
}
.why__list-item:last-child { margin-bottom: 0; }
.why__list-item > div:first-child {
  width: 24px;
  min-width: 24px;
  margin-right: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__twin-text {
  display: flex;
  flex-flow: column;
}
.why__twin-text span:first-child {
  font-size: 16px;
  font-family: "Circular Std";
  color: var(--text);
  font-weight: 700;
  line-height: 24px;
}
.why__twin-text span:last-child {
  color: rgba(24,24,24,.56);
  line-height: 24px;
}

.experts {
  background: var(--section);
}
.header {
  display: flex;
  margin-bottom: 74px;
  justify-content: space-between;
  align-items: center;
}
.header h1 {
  font-size: 32px;
  color: var(--text);
  font-family: "Gilroy-Bold", "DejaVu Sans Bold";
}
.experts-grid {
  --slider-gap: 16px;
  padding-bottom: 160px;
}
.expert {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
}
.expert__image {
  min-height: 285px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-repeat: no-repeat;
}
.expert__rates { margin-top: 16px; }
.rate { display: flex; align-items: center; margin-bottom: 24px; }
.rate__stars { display: flex; gap: 0 6px; }
.expert__rates .name {
  color: var(--blue);
  font-family: "Gilroy-Bold";
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 500;
}
.expert__rates .progress {
  color: #626262;
  font-size: 14px;
  font-family: "Gilroy-Regular";
  margin-bottom: 24px;
  padding: 7px 7px 7px 0;
  line-height: normal;
  height: unset;
  background: transparent;
}
.service-tags {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 24px;
  gap: 0 5px;
}
.service-tags span {
  background-size: cover;
  width: 33px;
  height: 33px;
  margin-right: 6px;
}
.expert .actions { display: flex; align-items: center; }
.expert .actions > * { flex: 1 0 auto; justify-content: center; }
.expert .actions .btn img {
  width: 18px;
  height: 18px;
  margin-left: 12px;
}

.works {
  display: flex;
  background: var(--section);
  padding-bottom: 160px;
}
.works__content { display: flex; flex-flow: column; }
.works__content__hood {
  margin: 80px 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.works__header { margin-left: 16px; }
.works__container {
  border-radius: 32px;
  position: relative;
}
.works__container > img { width: 100%; }
.works__list {
  position: absolute;
  width: 440px;
  background: var(--white);
  top: 32px;
  right: 32px;
  border-radius: 12px;
  display: flex;
  flex-flow: column;
}
.works__list-item {
  padding: 24px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #e5e5e5;
  transition: background .3s ease-in-out;
}
.works__list-item:first-child { border-radius: 12px 12px 0 0; }
.works__list-item:last-child { border-radius: 0 0 12px 12px; }
.works__list-item:hover { background: rgba(24,24,24,.056); }
.works__list-icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.works__list-icon img {
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.works__list-desc {
  padding: 0 24px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-width: 0;
}
.works__list-desc .title {
  font-size: 16px;
  font-family: "Gilroy-Bold", "DejaVu Sans Bold", sans-serif;
  color: var(--text);
  font-weight: 700;
}
.works__list-desc .desc {
  font-size: 14px;
  font-family: "Gilroy-Regular";
  margin-top: 0;
  color: rgba(24,24,24,.56);
  line-height: 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease-in-out, opacity .25s ease-in-out, margin-top .25s ease-in-out;
}
.works__list-item.active .desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 8px;
}
.works__caret {
  width: 16px;
  min-width: 16px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}
.works__caret img { transition: transform .3s linear; }
.works__list-item.active .works__caret img { transform: rotate(180deg); }
.works__actions {
  position: absolute;
  bottom: 32px;
  right: 32px;
}

.reviews {
  padding-left: 16px;
  display: flex;
  background: var(--section);
  padding-top: 22px;
  padding-bottom: 160px;
}
.reviews__title-container {
  display: flex;
  margin-bottom: 56px;
  position: relative;
}
.reviews__title-container .title {
  flex: 0 0 608px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--text);
  font-feature-settings: "case" on;
}
.reviews__title-container .title span:last-child { color: var(--blue); }
.reviews__content { margin-bottom: 40px; }
.reviews__cards {
  --slider-gap: 40px;
}
.reviews__card {
  min-width: 0;
  min-height: 410px;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0 16px;
  margin-top: 10px;
}
.reviewer .photo {
  width: 48px;
  height: 48px;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}
.full-name {
  font-family: Helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #000;
}
.review {
  display: flex;
  position: relative;
  margin-top: 16px;
  font-family: "Gilroy-Regular";
  font-size: 16px;
  line-height: 28px;
  color: rgba(24,24,24,.8);
}
.reviews__actions { display: flex; justify-content: flex-start; }
.reviews__actions > * {
  flex: 0 0 auto;
  position: relative;
}

.vlog {
  overflow: clip;
  display: flex;
  background: var(--section);
  padding-bottom: 160px;
}
.vlog__title {
  padding-left: 16px;
  width: max-content;
  font-size: 32px;
  font-family: "Gilroy-Bold";
  margin-bottom: 24px;
}
.vlog__text {
  padding-left: 16px;
  font-family: "Circular Std", "Gilroy-Regular";
  font-size: 18px;
  font-weight: 500;
  color: rgba(24,24,24,.8);
  line-height: 28px;
  margin-bottom: 48px;
}
.vlog__content {
  display: grid;
  grid-template-columns: 706px 1fr;
  gap: 16px;
}
.vlog iframe {
  border-radius: 15px;
  padding: 5px;
  background: var(--section);
}
.vlog-main { width: 706px; height: 459px; }
.vlog-previews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.vlog-previews iframe {
  width: 100%;
  height: 210px;
}
.vlog__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.faq {
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  background: var(--section);
  padding-bottom: 80px;
}
.faq__title {
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 75px;
}
.faq__list {
  display: flex;
  flex-flow: column;
  gap: 40px 0;
  width: 100%;
}
.faq__item {
  border-radius: 16px;
  background: var(--white);
}
.faq__hood {
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  cursor: pointer;
}
.faq__list-title {
  font-family: "Gilroy-Bold", "DejaVu Sans Bold", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}
.faq__carret {
  margin-left: auto;
  width: 28px;
  height: 28px;
  min-width: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  border-radius: 50%;
  transition: transform .3s linear;
}
.faq__carret img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.faq__item.open .faq__carret { transform: rotate(180deg); }
.faq__list-content {
  border-top: 1px solid #d1d6de;
  padding: 0 50px;
  color: var(--text);
  font-family: "Gilroy-Regular", "Cambay-Regular";
  font-size: 16px;
  line-height: 28px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease-in-out, opacity .25s ease-in-out, padding .35s ease-in-out;
}
.faq__item.open .faq__list-content {
  max-height: 500px;
  opacity: 1;
  padding: 40px 50px;
}
.faq__actions {
  display: flex;
  justify-content: center;
  padding: 40px 0 0;
}

.foot-section {
  padding-left: 16px;
  display: flex;
  padding-top: 80px;
  background-color: var(--white);
}
.foot {
  display: flex;
  width: 100%;
  flex-flow: column;
}
.foot__nav {
  display: flex;
  align-items: flex-start;
}
.foot__nav > * {
  flex-basis: 0;
  flex-grow: 1;
}
.foot__nav-section {
  display: flex;
}
.foot__nav-section--start { justify-content: flex-start; }
.foot__nav-section--center {
  flex-grow: 2 !important;
  justify-content: center;
  padding: 0 100px;
}
.foot__nav-section--end { justify-content: flex-end; }
.foot__menu {
  display: flex;
  flex-flow: column;
}
.foot__menu-title {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: var(--text);
  margin-bottom: 32px;
}
.foot__menu-items {
  display: flex;
  flex-flow: column;
}
.foot__menu-item {
  color: rgba(24,24,24,.7);
  margin-top: 20px;
}
.foot__menu-item:first-child { margin-top: 0; }
.foot__menu-item > * {
  color: rgba(24,24,24,.7);
  text-decoration: none;
  font-family: "Circular Std";
  font-size: 16px;
}
.foot__menu-item a {
  display: flex;
  align-items: center;
}
.foot__menu-item img {
  margin-right: 8px;
}
.toggle-sections-button { display: none; }
.foot__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 64px 0 56px;
}
.foot__links > * {
  flex-grow: 1;
  flex-basis: 0;
}
.foot__logo img { width: 91px; }
.foot__copyright {
  display: flex;
  justify-content: center;
  color: rgba(24,24,24,.8);
  font-size: 16px;
  font-family: "Circular Std";
}
.foot__copyright > span:last-child {
  color: rgba(24,24,24,.56);
  padding-left: 4px;
}
.foot__socials {
  display: flex;
  justify-content: flex-end;
}
.foot__social-item {
  margin-left: 16px;
}
.foot__social-item:first-child { margin-left: 0; }
.foot__social-item a {
  background-color: #f3f5f8;
  border-radius: 8px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot__social-item a img {
  transition: all .4s ease-in-out;
}
.foot__social-item:hover img {
  transform: scale(1.1);
}

/* ===================================================
   SLIDER / CAROUSEL SYSTEM
   JS sets --slide-width on the track via updateSlider().
   =================================================== */
[data-slider] {
  display: flex;
  gap: 0 var(--slider-gap, 16px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
[data-slider]::-webkit-scrollbar { display: none; }
[data-slider] > * {
  flex: 0 0 var(--slide-width);
  width: var(--slide-width);
  min-width: 0;
}

/* ===================================================
   RESPONSIVE — production breakpoints
   phone: 375px | tablet: 1024px | tablet-lg: 1280px | desktop: 1366px | desktop-lg: 1500px
   =================================================== */

/* 1166–1280px: narrow container */
@media (min-width: 1166px) and (max-width: 1280px) {
  .data-container { width: 1166px; }
}

/* 1024–1165px: wide-tablet container */
@media (min-width: 1024px) and (max-width: 1165px) {
  .data-container { width: 1024px; }
}

/* ≤1399px: cards gap + image max-width */
@media (max-width: 1399px) {
  .cards { --slider-gap: 16px; }
  .cards__pic img { max-width: 378px; }
}

/* 1166–1399px: mid-range layout tweaks */
@media (min-width: 1166px) and (max-width: 1399px) {
  .why { padding-top: 180px; }
  .why__images img { width: 307px; }
  .why__list { right: 246px; top: -60px; }
  .reviews__cards { --slider-gap: 16px; }
}

@media (max-width: 1439px) {
  .experts-slide-buttons-wrapper { display: block; }
}

@media (min-width: 1441px) {
  .reviews-slide-buttons-wrapper { display: none; }
}

/* ≤1366px: expert header margin */
@media (max-width: 1366px) {
  .header { margin-bottom: 50px; }
}

/* ≤1365px (<desktop): intro adjustments */
@media (max-width: 1365px) {
  .intro__info h1 { font-size: 55px; }
  .intro__info h3 { font-size: 16px; width: 500px; }
  .intro__poster-card img { width: 500px; }
}

/* ≤1280px: bullets taller */
@media (max-width: 1280px) {
  .cards__bullets { min-height: 180px; }
}

/* ≤1165px (<1166px): why section stack */
@media (max-width: 1165px) {
  .why { padding: 48px 16px; }
  .why__content { flex-flow: column; }
  .why__story { flex: 0 0 100%; padding-top: 0; margin-bottom: 16px; }
  .why__text { margin-bottom: 16px; }
  .why__poster { display: flex; flex-flow: column-reverse; }
  .why__images { width: 100%; }
  .why__images img { width: 100%; }
  .why__list { width: 90%; min-width: 279px; margin: -42px auto 0; position: initial; z-index: 1; }
}

/* ≤1118px: poster card image narrower */
@media (max-width: 1118px) {
  .intro__poster-card img { width: 470px; }
}

/* ≤1024px (tablet): footer mobile + intro tablet */
@media (max-width: 1024px) {
  .intro__info__title { margin-top: 20px !important; margin-bottom: 30px !important; }
  .intro__info h3 { width: 430px; font-size: 17px; }
  .intro__poster-card img { width: 430px; }
  .cards__bullets { min-height: 156px; }
  .foot-section { padding-right: 16px; padding-bottom: 160px; }
  .foot-section .data-container { position: relative; }
  .foot__nav { flex-direction: column; gap: 24px 0; }
  .foot__nav > * { flex-basis: auto; flex-grow: 0; }
  .foot__nav-section--center { flex-direction: column; padding: 0; }
  .foot__links > * { flex-basis: auto; flex-grow: 0; }
  .foot__links { padding: 32px 0 !important; flex-direction: column; gap: 16px 0; }
  .foot__logo { position: static; }
  .foot__copyright { justify-content: flex-start; }
  .foot__socials { justify-content: flex-start; }
}

/* ≤1023px (<tablet): main layout switch */
@media (max-width: 1023px) {
  .data-container { width: 100%; }
  .hamburger { display: block; }
  .navigation { display: none; }
  .intro__info { flex: none; }
  .intro__acctions { padding-left: 0; }
  .cards { padding-right: 16px; }
  .cards__pic img { max-width: 100%; height: 350px; object-fit: cover; }
  .cards__bullets { min-height: 156px; }
  .experts-grid { padding-bottom: 0; padding-right: 16px; }
  .experts { padding-bottom: 24px; padding-left: 16px; }
  .reviews__cards { --slider-gap: 16px; padding-right: 16px; }
  .reviews { padding-bottom: 48px; }
  .reviews__content { margin-bottom: 16px; }
  .reviews__title-container .title { flex: 0 0 100%; font-size: 20px; line-height: 32px; }
  .reviews__title-container { margin-bottom: 24px; }
  .reviews-slide-buttons-wrapper,
  .experts-slide-buttons-wrapper { display: none; }
  .how__content__hood .buttons { display: flex; }
  .works { padding-bottom: 48px; }
  .works__container { display: flex; flex-flow: column; }
  .works__list { width: 90%; position: initial; z-index: 1; margin: -90px auto 0; }
  .works__actions { position: initial; }
  .works__actions .btn { width: 90%; margin: 16px auto 0; justify-content: center; font-size: 14px; }
  .vlog__content { display: none; }
  .vlog { padding-bottom: 48px; }
  .vlog__actions { margin-top: 16px; justify-content: center; width: 100%; }
  .vlog__actions .btn { width: 90%; display: flex; justify-content: center; }
  .faq { padding-bottom: 48px; }
}

/* 375–1024px: how section hood margin */
@media (min-width: 375px) and (max-width: 1024px) {
  .how__content__hood { margin-top: 64px; margin-bottom: 24px; }
}

/* ≤965px: cards image full width */
@media (max-width: 965px) {
  .cards__pic img { max-width: 100%; }
}

/* ≤960px: bullet font-size */
@media (max-width: 960px) {
  .cards__bullet-item { font-size: 15px; }
}

/* ≤899px (<900px): h3 narrower */
@media (max-width: 899px) {
  .intro__info h3 { width: 360px; font-size: 17px; }
}

/* ≤800px: bullets adjust */
@media (max-width: 800px) {
  .cards__bullets { min-height: 160px; }
}

/* ≤767px: reviews card padding */
@media (max-width: 767px) {
  .reviews__card { padding-left: 17px; padding-right: 17px; min-height: 420px; }
  .reviews__actions a { font-size: 12px; padding-left: 17px; padding-right: 17px; }
}

/* ≤746px: intro poster hidden */
@media (max-width: 746px) {
  .intro__poster { display: none; }
}

/* ≤739px (<740px): intro info flex reset + h3 wider */
@media (max-width: 739px) {
  .intro__info { flex: none; }
  .intro__info h3 { width: 470px; font-size: 17px; }
}

/* ≤699px (<700px): intro actions + title margins */
@media (max-width: 699px) {
  .intro__info__title { margin-top: 20px !important; margin-bottom: 8px !important; }
  .intro__acctions { margin-top: 16px; margin-bottom: 24px; }
  .intro__acctions button { font-size: 14px; }
}

/* ≤599px (<600px): small screens */
@media (max-width: 599px) {
  .intro { padding: 16px; }
  .intro__info h1 { font-size: 45px; line-height: 54px; }
  .intro__info h3 { width: 400px; font-size: 16px; }
  .reviews-cont { padding-top: 24px; }
}

/* ≤509px (<510px) */
@media (max-width: 509px) {
  .intro__info h1 { font-size: 24px; line-height: 36px; }
  .intro__info h3 { width: 310px; font-size: 16px; }
}

/* ≤500px: how/works section titles */
@media (max-width: 500px) {
  .how__title, .works__header { font-size: 20px; }
}

/* ≤375px (phone): experts + very small adjustments */
@media (max-width: 375px) {
  .experts { padding-bottom: 24px; }
  .header { margin-bottom: 24px; }
  .header h1 { font-size: 20px !important; }
  .cards__bullets { min-height: 165px; }
}

/* ≤374px (<phone): tiny screens */
@media (max-width: 374px) {
  .intro__info { max-width: 300px; }
  .intro__info h1 { font-size: 30px; line-height: 36px; }
}

.expert-assistant-btn {
  background: rgb(60, 116, 255) !important;
  color: var(--white) !important;
}

/* ---- Mobile phone menu ---- */
.phone-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #353c48;
  color: #f4f4f4;
  z-index: 200;
  overflow-y: auto;
  padding-top: 30px;
}
.phone-menu.is-open { display: block; }
.phone-menu .data-container { height: 100%; position: relative; padding: 0 24px; }
.phone-menu__hood {
  background: #424c5c;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  border-radius: 6px;
}
.phone-menu__hood span:first-child {
  font-family: "Gilroy-Medium";
  font-size: 20px;
  color: #f4f4f4;
}
.phone-menu__close {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.phone-menu__close img { width: 20px; height: 20px; }
.phone-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-menu__nav a {
  font-family: "Gilroy-Medium";
  font-size: 20px;
  color: #f4f4f4;
  text-decoration: none;
  margin-bottom: 40px;
}
.phone-menu__nav a:last-child { margin-bottom: 0; }
.phone-menu__footer {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}
.phone-menu__footer img { width: 80px; filter: brightness(10); }
