.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  padding: 35px 50px;
}
.header__inner {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(250, 250, 250, 0.3);
  padding-bottom: 20px;
  justify-content: space-between;
  position: relative;
}
.header__logo {
  flex-shrink: 0;
  width: 86px;
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 13px;
  font-family: "Onest", Arial, sans-serif;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}
.header__nav :hover {
  color: #FFD700;
}
@media (max-width: 1100px) {
  .header__nav {
    gap: 20px;
  }
}
.header__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__socials a {
  transition: 0.3s ease;
}
.header__socials a:hover {
  transform: translateY(-2px);
}
.header__socials a:first-child {
  margin-right: 10px;
}
.header__socials a:nth-child(2) {
  margin-right: 10px;
}
.header__socials img {
  object-fit: contain;
  display: block;
}
.header__mobile-menu {
  display: none;
}
.header__mobile-logo {
  width: 93px;
  margin: 0 auto 20px;
  align-items: center;
  display: flex;
  justify-content: center;
}
.header__mobile-logo img {
  width: 100%;
  display: block;
}
.header__mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 45px;
}
.header__mobile-nav a {
  font-size: 13px;
  font-weight: 300;
  color: #FAFAFA;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 2%;
}
.header__mobile-top-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  margin-bottom: 23px;
}
.header__mobile-top-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__mobile-top-socials img {
  display: block;
  object-fit: contain;
}
.header__mobile-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header__mobile-socials a {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__mobile-socials img {
  display: block;
  object-fit: contain;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #9f9f9f;
  margin: 0 auto;
  position: relative;
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 15px;
  height: 1.71px;
  background: #9f9f9f;
}
.burger span::before {
  top: -6px;
}
.burger span::after {
  top: 6px;
}

@media (max-width: 992px) {
  .header {
    padding: 15px 10px 0;
  }
  .header__inner {
    align-items: flex-start;
    padding-bottom: 16px;
  }
  .header__logo {
    width: 88px;
  }
  .header__nav, .header__socials {
    display: none;
  }
  .header__mobile-menu {
    display: block;
    position: absolute;
    width: 100%;
    padding: 0;
    background: rgba(89, 89, 89, 0.86);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 20;
  }
  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    position: relative;
    z-index: 25;
  }
  .header.menu-open {
    padding: 0;
  }
  .header.menu-open .header__mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header.menu-open .container {
    padding: 0;
  }
  .header.menu-open .burger {
    background: rgba(255, 255, 255, 0.12);
    margin: 10px;
  }
  .header.menu-open .burger span {
    background: transparent;
  }
  .header.menu-open .burger span::before {
    top: 0;
    transform: rotate(45deg);
    background: #9F9F9F;
  }
  .header.menu-open .burger span::after {
    top: 0;
    transform: rotate(-45deg);
    background: #9F9F9F;
  }
}
@media (max-width: 992px) {
  .header__mobile-menu {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .header__mobile-box {
    width: 89%;
    height: 100%;
    background: #fff;
    border-radius: 24px 0 0 24px;
    padding: 105px 30px 35px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: 0.3s ease;
  }
  .header__mobile-logo {
    margin: 0 0 30px;
  }
  .header__mobile-logo img {
    filter: invert(1);
  }
  .header__mobile-nav {
    align-items: flex-start;
    gap: 30px;
  }
  .header__mobile-nav a {
    font-size: 28px;
    font-weight: 500;
    color: #0A0A0A;
    line-height: 92%;
  }
  .header__mobile-top-socials {
    justify-content: flex-start;
    margin-top: auto;
    margin-bottom: 0;
  }
  .header__mobile-socials {
    justify-content: flex-start;
  }
  .header.menu-open .header__mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header.menu-open .header__mobile-box {
    transform: translateX(0);
  }
}
.hero {
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background: #8f8f8f;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 28, 35, 0.28);
}
.hero__bg__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding-top: 129px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
}
.hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: 8fr 7fr;
  gap: 40px;
  padding-top: 35px;
  align-items: start;
  border-bottom: 1px solid rgba(250, 250, 250, 0.3);
}
.hero__left {
  padding-top: 6px;
}
.hero__title {
  max-width: 573px;
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: 40px;
  line-height: 0.92;
  font-weight: 500;
}
.hero__title span {
  color: #FFE8DE;
}
.hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 168px;
}
.hero__bubble {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.hero__bubble img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
}
.hero__info {
  margin-left: auto;
  padding-top: 35px;
  width: 100%;
  max-width: 550px;
}
.hero__text {
  margin: 0 0 19px;
  max-width: 550px;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 400;
  color: #fff;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 268px;
  min-height: 50px;
  padding: 18px 28px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 16px;
  line-height: 0.92;
  font-weight: 600;
  transition: 0.3s ease;
}
.hero__btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .hero {
    min-height: 100svh;
  }
  .hero__bg video {
    width: 100%;
    height: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__inner {
    min-height: 100svh;
    padding-top: 118px;
    padding-bottom: 28px;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 120px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.3);
  }
  .hero__left {
    padding-top: 0;
  }
  .hero__title {
    font-size: 24px;
  }
  .hero__right {
    padding-top: 90px;
    align-items: center;
    position: relative;
    left: 30%;
  }
  .hero__bubble img {
    max-width: 270px;
  }
  .hero__info {
    margin-left: 0;
    max-width: 420px;
    padding-top: 22px;
  }
  .hero__text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .hero__btn {
    min-width: 270px;
    min-height: 50px;
    font-size: 16px;
    margin-bottom: 65px;
  }
}
.stats {
  background: #fafafa;
  padding: 100px 0 70px;
}
.stats__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.stats {
  /* LEFT */
}
.stats__left {
  position: relative;
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 350px) {
  .stats__left {
    gap: 10px !important;
  }
}
.stats__big {
  font-size: 96px;
  font-weight: 600;
  color: #f2c200;
  line-height: 1;
  margin-bottom: 10px;
}
.stats__desc {
  font-size: 16px;
  color: #9F9F9F;
  line-height: 92%;
  max-width: 265px;
}
.stats__decor {
  position: relative;
  display: flex;
  justify-content: center;
  top: 0;
  width: 170px;
  height: 120px;
}
@media (max-width: 350px) {
  .stats__decor {
    width: 115px;
    height: 115px;
  }
}
.stats__decor span {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #F3F0E2;
  opacity: 0.7;
}
@media (max-width: 350px) {
  .stats__decor span {
    width: 58px;
    height: 58px;
  }
}
.stats__decor span:nth-child(1) {
  top: 0;
  left: 0;
}
.stats__decor span:nth-child(2) {
  top: 67px;
  left: 0;
}
.stats__decor span:nth-child(3) {
  top: 67px;
  left: 67px;
}
.stats {
  /* RIGHT */
}
.stats__text {
  font-size: 28px;
  line-height: 92%;
  max-width: 660px;
  color: #0A0A0A;
  margin: 0 0 50px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-content: space-between;
}
.stats__value {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 92%;
  color: #0A0A0A;
}
.stats__label {
  font-size: 16px;
  color: #9F9F9F;
  line-height: 92%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stats__label span {
  color: #00519C;
  font-size: 12px;
}

@media (max-width: 992px) {
  .stats {
    padding: 65px 0;
  }
  .stats__big {
    font-size: 86px;
  }
  .stats__desc {
    font-size: 14px;
    max-width: 178px;
  }
  .stats__left {
    gap: 24px;
  }
  .stats__inner {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .stats__text {
    font-size: 24px;
    margin-bottom: 65px;
  }
  .stats__grid {
    gap: 30px;
  }
  .stats__value {
    font-size: 40px;
  }
  .stats__label {
    font-size: 15px;
  }
}
.stats__left .stats__text {
  margin: 0 !important;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
.about {
  background: #fafafa;
  padding: 60px 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 4fr 3fr;
  gap: 60px;
}
.about {
  /* LEFT */
}
.about__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  line-height: 92%;
  color: #9a9a9a;
  padding-bottom: 26px;
}
.about__label-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: block;
}
.about__label-icon span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
}
.about__label-icon span:nth-child(1) {
  top: 0;
  left: 0;
}
.about__label-icon span:nth-child(2) {
  top: 8px;
  left: 0;
}
.about__label-icon span:nth-child(3) {
  top: 8px;
  left: 8px;
}
.about__title {
  margin: 0;
  max-width: 737px;
  font-size: 52px;
  line-height: 92%;
  font-weight: 400;
  color: #0A0A0A;
}
@media (max-width: 1100px) {
  .about__title {
    font-size: 28px !important;
  }
}
.about__bottom {
  max-width: 610px;
}
.about__text {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 92%;
  color: #9F9F9F;
}
.about__link {
  color: #00519C;
  font-size: 12px;
}
.about {
  /* RIGHT */
}
.about__card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(to right, #6F6E73 0%, #76757D 27%, #78777F 51%, #797880 78%, #76757D 100%);
  padding-top: 90px;
}
.about__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__card-content {
  position: absolute;
  inset: 0;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.about__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about__card-info {
  max-width: 235px;
}
.about__card-name {
  font-size: 22px;
  font-weight: 500;
  line-height: 92%;
  margin-bottom: 5px;
}
.about__card-role {
  font-size: 16px;
  line-height: 92%;
  color: #F3F0E2;
  font-weight: 300;
}
.about__card-avito {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 10px;
}
.about__card-avito img {
  width: 98px;
}
.about__card-avito span {
  font-size: 14px;
  margin-top: 5px;
  color: #B8B8B8;
  line-height: 92%;
  max-width: 120px;
  text-align: right;
}
.about__card-quote {
  font-size: 28px;
  font-weight: 600;
  line-height: 92%;
  text-align: right;
  max-width: 460px;
}

@media (max-width: 1200px) {
  .about__inner {
    grid-template-columns: 1fr 460px;
    gap: 40px;
  }
  .about__title {
    font-size: 36px;
    max-width: 620px;
  }
  .about__bottom {
    margin-top: 260px;
  }
}
@media (max-width: 992px) {
  .about {
    padding: 50px 0 0;
  }
  .about__inner {
    grid-template-columns: 1fr 1fr;
  }
  .about__label {
    padding-bottom: 20px !important;
  }
  .about__title {
    max-width: 100%;
    font-size: 24px !important;
    order: 1;
  }
  .about__bottom {
    margin-top: 0;
    max-width: 100%;
    order: 3;
  }
  .about__right {
    max-width: 548px;
    order: 2;
  }
}
@media (max-width: 768px) {
  .about__card-content {
    justify-content: flex-start;
    gap: 15px;
    padding: 25px 20px;
  }
  .about__card-top {
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
  .about__card-quote {
    order: 2;
    text-align: left;
    line-height: 92%;
    font-size: 26px;
    border-top: 1px solid #FFFFFF;
    padding-top: 10px;
    font-weight: 600;
  }
  .about__card-info {
    order: 3;
  }
  .about__card-avito {
    align-items: flex-start;
  }
  .about__card-avito span {
    text-align: start;
  }
}
@media (max-width: 569px) {
  .about__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .about__left {
    display: contents;
  }
}
.team {
  background: #fafafa;
  padding: 60px 0 0;
}
.team__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  line-height: 92%;
  color: #9a9a9a;
  padding-bottom: 26px;
}
.team__label-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: block;
}
.team__label-icon span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
}
.team__label-icon span:nth-child(1) {
  top: 0;
  left: 0;
}
.team__label-icon span:nth-child(2) {
  top: 8px;
  left: 0;
}
.team__label-icon span:nth-child(3) {
  top: 8px;
  left: 8px;
}
.team__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  height: 481px;
  margin-bottom: 34px;
  background: url("../images/pictures/team-dots-bg.png") no-repeat left top;
  background-size: contain;
}
.team__title {
  margin: 0;
  max-width: 705px;
  font-size: 52px;
  line-height: 92%;
  font-weight: 400;
  color: #0A0A0A;
}
.team__visual {
  position: relative;
  min-height: 481px;
}
.team__dots {
  display: grid;
  grid-template-columns: repeat(5, 72px);
  gap: 22px;
  opacity: 0.55;
}
.team__dots span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e8e3d7;
}
.team__pin {
  position: absolute;
  left: 180px;
  top: 190px;
  width: 72px;
  height: 72px;
}
.team__pin img {
  width: 100%;
  height: auto;
  display: block;
}
.team__note {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 432px;
  font-size: 32px;
  line-height: 92%;
  font-weight: 600;
  color: #0A0A0A;
  text-transform: uppercase;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 20px;
}
.team__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team__card--offset {
  grid-column: 2/3;
}
.team__image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  aspect-ratio: 1/1.35;
  background: #ddd;
}
.team__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team__name {
  font-size: 26px;
  line-height: 92%;
  font-weight: 500;
  color: #0A0A0A;
}

.team {
  padding: 100px 0 0;
}
.team__slider {
  display: none !important;
}
@media (max-width: 992px) {
  .team .container {
    padding-right: 0;
  }
  .team__grid {
    display: none;
  }
  .team__top {
    grid-template-columns: 1fr;
    gap: 30px;
    height: fit-content;
    background: none;
    background-size: cover;
    margin-bottom: 65px;
  }
  .team__label {
    padding-bottom: 20px !important;
  }
  .team__visual {
    min-height: unset;
  }
  .team__note {
    position: relative;
    font-size: 16px;
  }
  .team__title {
    font-size: 24px;
  }
  .team__slider {
    display: block !important;
    padding-left: 20px;
  }
  .team .swiper-slide {
    width: 90%;
  }
  .team__card {
    gap: 14px;
  }
  .team__name {
    font-size: 24px;
  }
}

.team__card {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}
.team__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problems {
  background: #fafafa;
  padding: 150px 0;
}
.problems__top {
  text-align: center;
  margin-bottom: 64px;
}
.problems__title {
  margin: 0 0 50px;
  font-size: 52px;
  line-height: 92%;
  font-weight: 400;
  color: #0A0A0A;
}
.problems__text {
  margin: 0 auto;
}
.problems__text--gray {
  max-width: 567px;
  font-size: 16px;
  line-height: 92%;
  color: #9F9F9F;
  margin-bottom: 16px;
}
.problems__text--black {
  max-width: 567px;
  font-size: 16px;
  line-height: 92%;
  color: #0A0A0A;
}
.problems__timeline {
  position: relative;
}
.problems__line {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #9F9F9F;
}
.problems__items {
  display: flex;
  justify-content: space-between;
}
.problems__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.problems__item:first-child {
  align-items: flex-start;
  text-align: left;
}
.problems__item:last-child {
  align-items: flex-end;
  text-align: right;
}
.problems__dot {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #FFD700;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}
.problems__label {
  font-size: 26px;
  line-height: 92%;
  max-width: 221px;
  font-weight: 500;
  color: #0A0A0A;
}

.problems__line {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #9F9F9F;
  overflow: visible;
}

.problems__line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  filter: blur(12px);
  background: radial-gradient(circle, rgb(255, 215, 0) 0%, rgba(255, 215, 0, 0.6) 30%, rgba(255, 215, 0, 0.2) 60%, transparent 80%);
  filter: blur(8px);
  pointer-events: none;
}

@keyframes shineDot {
  0% {
    left: 0%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
}
.problems__line::after {
  animation: none;
}

.problems.is-visible .problems__line::after {
  animation: shineDot 2.5s ease forwards;
  animation-delay: 0.5s;
}

@media (max-width: 992px) {
  .problems {
    padding: 100px 0 70px;
  }
  .problems__top {
    margin-bottom: 58px;
    text-align: left;
  }
  .problems__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .problems__items {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .problems__item {
    flex-direction: row;
    gap: 16px;
    align-items: center !important;
  }
  .problems__line {
    display: none;
  }
  .problems__dot {
    margin-bottom: 0;
  }
  .problems__label {
    font-size: 20px;
    max-width: unset;
  }
}
@media (max-width: 992px) {
  .problems__timeline {
    position: relative;
  }
  .problems__timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    width: 1px;
    height: 100%;
    background: #9F9F9F;
  }
  .problems__items {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .problems__item {
    flex-direction: row;
    align-items: center !important;
    gap: 16px;
  }
  .problems__dot {
    position: relative;
    z-index: 2;
  }
}
.consultation {
  background: #fafafa;
  padding: 38px 0 112px;
}
.consultation__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  background: #F3F0E2;
  border-radius: 24px;
  padding: 25px 25px 25px 50px;
  align-items: center;
}
.consultation {
  /* LEFT */
}
.consultation__left {
  max-width: 727px;
}
.consultation__title {
  margin: 0 0 39px;
  font-size: 48px;
  line-height: 92%;
  font-weight: 500;
  color: #0A0A0A;
}
.consultation__line {
  width: 100%;
  height: 1px;
  background: #9F9F9F;
  margin-bottom: 40px;
}
.consultation__form {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.consultation__field input {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: #FAFAFA;
  padding: 0 20px;
  font-family: inherit;
  font-size: 16px;
  line-height: 92%;
  color: #0A0A0A;
  outline: none;
}
.consultation__field input::placeholder {
  color: #9F9F9F;
}
.consultation__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  position: relative;
  padding-top: 9px;
}
.consultation__agree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.consultation__agree:hover .consultation__agree-box::after {
  opacity: 1;
  transform: translate(-50%, -60%) rotate(-45deg) scale(1);
  border-color: #9F9F9F;
}
.consultation__agree-box {
  width: 18px;
  height: 18px;
  border: 1px solid #C8C8C8;
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  margin-top: 1px;
  transition: all 0.25s ease;
}
.consultation__agree-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg) scale(0);
  transition: 0.2s ease;
}
.consultation {
  /* ===== CHECKED ===== */
}
.consultation input:checked + .consultation__agree-box {
  background: #FFD700;
  border-color: #FFD700;
}
.consultation input:checked + .consultation__agree-box::after {
  transform: translate(-50%, -60%) rotate(-45deg) scale(1);
}
.consultation__agree-text {
  font-size: 10px;
  line-height: 92%;
  color: #9F9F9F;
  max-width: 480px;
}
.consultation__btn {
  width: 100%;
  max-width: 500px;
  height: 43px;
  border: none;
  margin-top: 9px;
  border-radius: 999px;
  background: #FFD700;
  color: #0A0A0A;
  font-family: inherit;
  font-size: 16px;
  line-height: 92%;
  transition: 0.3s ease;
}
.consultation__btn:hover {
  transform: translateY(-2px);
}
.consultation {
  /* RIGHT */
}
.consultation__image {
  border-radius: 11px;
  overflow: hidden;
  height: 100%;
}
.consultation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1200px) {
  .consultation__inner {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }
  .consultation__title {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .consultation {
    padding: 30px 0 70px;
  }
  .consultation__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
  .consultation__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .consultation__field input {
    font-size: 14px;
  }
  .consultation__line {
    margin-bottom: 28px;
  }
  .consultation__form {
    max-width: 100%;
  }
  .consultation__btn {
    max-width: 100%;
  }
  .consultation__image {
    aspect-ratio: 1/1;
  }
}
.consultation__link {
  text-decoration: underline;
  transition: 0.2s;
}
.consultation__link:hover {
  opacity: 0.6;
}

.footer {
  background: #1E1E1E;
  color: #999999;
  padding: 60px 0 20px;
  border-radius: 30px 30px 0 0;
}
.footer__top {
  display: flex;
  justify-content: space-around;
  margin-bottom: 60px;
}
.footer {
  /* LEFT */
}
.footer__logo {
  margin-bottom: 30px;
}
.footer__logo img {
  width: 70px;
}
.footer__text {
  font-size: 13px;
  line-height: 150%;
  color: #999999;
  max-width: 300px;
  margin: 0;
}
.footer {
  /* MENUS */
}
.footer__menus {
  display: contents;
}
.footer__title {
  font-size: 14px;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 0.05em;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list li {
  margin-bottom: 10px;
}
.footer__list a {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2%;
  color: #999999;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.2s;
}
.footer__list a:hover {
  color: #fff;
}
.footer {
  /* CONTACTS */
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 28px 4px 4px;
  border-radius: 12px;
  background: #272727;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  line-height: 34px;
  letter-spacing: 2%;
  transition: 0.2s;
}
.footer__contact:hover {
  background: #222;
}
.footer {
  /* BOTTOM */
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.footer__copy {
  font-size: 13px;
  color: #999;
}
.footer__policy {
  font-size: 13px;
  color: #999;
  text-decoration: none;
}
.footer__policy:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .footer {
    padding-top: 38px;
  }
  .footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 38px;
  }
  .footer__menus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
  }
  .footer__text {
    max-width: 100%;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: flex-start;
  }
  .footer__contact {
    width: 60%;
    padding: 4px;
  }
}
.footer__copy a {
  text-decoration: none;
  color: #0071d8;
  transition: 0.3s;
}
.footer__copy a:hover {
  opacity: 0.7;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-family: "Onest", Arial, sans-serif;
  color: #1e1e1e;
  background: #fafafa;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 50px;
  padding-left: 50px;
}

@media (max-width: 992px) {
  .container {
    padding: 0 10px;
  }
}
html {
  scroll-behavior: smooth;
}

/* ===== HERO ===== */
.hero__title,
.hero__bubble,
.hero__info {
  opacity: 0;
  transform: translateY(30px);
}

.hero__title--animate {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.15s;
}

.hero__bubble--animate {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.35s;
}

.hero__info--animate {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.55s;
}

/* ===== SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.6s ease;
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HOVER ===== */
.hero__btn,
.consultation__btn {
  transition: 0.3s ease;
}
.hero__btn:hover,
.consultation__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal-item {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(4px);
  transition: 0.6s ease;
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.popup.is-open {
  display: block;
}
.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(39, 39, 39, 0.3);
  backdrop-filter: blur(6px);
}
.popup__close {
  position: absolute;
  top: 39px;
  right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popup__close svg {
  width: 18px;
  height: 18px;
}
.popup__close:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg) scale(1.1);
}
@media (max-width: 768px) {
  .popup__close {
    top: 18px;
    right: 18px;
  }
}
.popup__content {
  position: relative;
  max-width: 693px;
  margin: 80px auto;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 70px 0;
  z-index: 2;
  color: #fafafa;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .popup__content {
    max-width: 100%;
    padding: 60px 37px;
    height: 100%;
    margin: 63px 0 0;
    border-radius: 0;
  }
}
.popup__body {
  max-width: 497px;
}
.popup__title {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 10px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .popup__title {
    font-size: 24px;
  }
}
.popup__subtitle {
  font-size: 20px;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .popup__subtitle {
    font-size: 16px;
  }
}
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.popup__input {
  height: 52px;
  border-radius: 69px;
  border: none;
  padding: 20px;
  font-size: 16px;
  line-height: 92%;
  color: #9f9f9f;
  background: #f8f8f8;
}
@media (max-width: 768px) {
  .popup__input {
    font-size: 14px;
  }
}
.popup__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  position: relative;
  padding-top: 9px;
}
.popup__agree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.popup__agree:hover .popup__agree-box::after {
  opacity: 1;
  transform: translate(-50%, -60%) rotate(-45deg) scale(1);
  border-color: #9F9F9F;
}
.popup__agree-box {
  width: 18px;
  height: 18px;
  border: 1px solid #C8C8C8;
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  margin-top: 1px;
  transition: all 0.25s ease;
}
.popup__agree-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg) scale(0);
  transition: 0.2s ease;
}
.popup {
  /* ===== CHECKED ===== */
}
.popup input:checked + .popup__agree-box {
  background: #FFD700;
  border-color: #FFD700;
}
.popup input:checked + .popup__agree-box::after {
  transform: translate(-50%, -60%) rotate(-45deg) scale(1);
}
.popup__agree-text {
  font-size: 10px;
  line-height: 92%;
  color: #9F9F9F;
  max-width: 480px;
}
.popup__btn {
  padding: 14px;
  height: 43px;
  border-radius: 54px;
  line-height: 92%;
  border: none;
  background: #FFD700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.popup__btn:hover {
  transform: translateY(-2px);
}

body.popup-open {
  overflow: hidden;
}

.iti {
  width: 100%;
}

.iti__tel-input {
  width: 100%;
}

.iti__flag-container {
  left: 20px;
}

.iti__selected-flag {
  padding-left: 15px !important;
}
.iti__selected-flag:hover {
  background: transparent !important;
}

.iti__country {
  color: #1a1a1a;
}

.policy {
  padding: 60px 0 100px;
}
.policy__title {
  font-size: 16px;
  line-height: 92%;
  font-weight: 400;
  color: rgba(159, 159, 159, 0.6235294118);
  margin: 0;
}
.policy__text {
  font-size: 16px;
  line-height: 92%;
  color: rgba(159, 159, 159, 0.6235294118);
}
.policy__text p {
  margin: 0;
}
.policy__text strong {
  font-weight: 400;
}

.policy {
  padding: 80px 0;
}
.policy__content {
  margin: 0;
  font-size: 16px;
  line-height: 92%;
  color: rgba(159, 159, 159, 0.6235294118);
}
.policy__content p {
  margin: 0;
}
.policy__content ul {
  margin: 0;
  padding: 0;
}
.policy__content ul li {
  margin: 0;
  list-style: disc;
}
.policy__content a {
  text-decoration: underline;
}

.popup__agree-text a {
  text-decoration: underline;
}
.popup__agree-text a:hover {
  opacity: 0.7;
}

.toast {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}
.toast--show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0A0A0A;
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.toast__icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
}
.toast--error .toast__icon {
  background: #ff4d4d;
}
.toast__text {
  font-size: 14px;
  line-height: 1.3;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 99999;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}