*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  color:#1D201F;
  background:#FDFDFD;
  font-optical-sizing: auto;
}

.services__title{
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #323232;
}
.container{
  width: 100%;
  max-width: 1366px;     /* 1320 контент + 23+23 padding */
  padding: 0 23px;
  margin: 0 auto;
}

/* HEADER */
.site-header{ background:#fff; }

.header-top{
  border-bottom: 1px solid #ececec;
}
.header-top__inner{
  min-height: 42px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 22px;
  flex-wrap: wrap;
  padding:20px 0px;
}
.header-top__item{
  display:flex;
  align-items:center;
  gap: 10px;
  color:#1D201F;
  text-decoration:none;
  white-space: nowrap;

  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}
.header-top__item:hover{ opacity:.85; }

.header-ico{
  width: 16px;
  height: 16px;
  display: inline-block;
  flex: 0 0 16px;
  object-fit: contain;
}

.logo img{ display:block; height:auto; }

.header-main{
  border-bottom: 1px solid #ececec;
}

.header-main__inner{
  min-height: 78px;
  display:flex;
  align-items:center;
  gap: 26px;
  padding:15px 23px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 22px;
  flex: 1;
  margin: 0;
}

.nav__link{
  color:#1D201F;
  text-decoration:none;

  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
.nav__link:hover{ opacity:.8; }

.btn{
  border: 0;
  cursor:pointer;
  font-family: inherit;
  border-radius: 999px;

  padding: 12px 24px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}

.btn--dark{
  background:#1D201F;
  color:#fff;
}

.site-footer{
  border-top: 1px solid #ececec;
  padding: 22px 0;
}
.footer__inner{ display:flex; align-items:center; justify-content:space-between; }
.footer__copy{ margin-top: 8px; font-size: 13px; color:#444; }

@media (max-width: 980px){
  .nav{ display:none; } /* позже сделаем бургер */
  .header-top__inner{ gap:12px; }
}

/* HERO */
.hero{
  position: relative;
  width: 100%;
  height: 756px;
  background: url("/img/hero.jpg") center center / cover no-repeat;
  overflow: hidden;
}

/* overlay: #000000 40% */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.40);
}

.hero__inner{
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 60px;
}

.hero__lead{
  max-width: 630px;
  color: #FDFDFD;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero__bottom{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.hero__title{
  color:#FDFDFD;
  font-weight: 600;
  font-size: 75px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero__nowrap{
  white-space: nowrap;
}

.hero-btn{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;

  background: #fff;
  border-radius: 50px;

  padding: 7px 10px 7px 25px;
  color: #1D201F;
  white-space: nowrap;

  /* добавили анимирование цветов для инверсии */
  transition: background .2s ease, color .2s ease, filter .2s ease, opacity .2s ease, transform .15s ease;
}

.hero-btn__text{
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* HERO кружок: зелёный + белая стрелка */
.hero-btn__icon{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #01373E;          /* зелёный кружок */
  color: #fff;                  /* белая стрелка (currentColor) */
  transition: background .2s ease, color .2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 42px;
}

/* SVG внутри hero (теперь именно svg, не img) */
.hero-btn__icon svg{
  width: 18px;
  height: 18px;
  display:block;
}

/* HOVER: инвертируем ВСЮ кнопку (фон/текст) */
.hero-btn:hover{
  background: #01373E;
  color: #fff;
  filter: none; /* убираем brightness, чтобы инверсия была чистой */
}

/* HOVER: инверсия кружка */
.hero-btn:hover .hero-btn__icon{
  background: #fff;
  color: #01373E;
}

/* адаптив HERO */
@media (max-width: 980px){
  .hero{
    height: auto;
    min-height: 640px;
  }
  .hero__inner{
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__title{
    font-size: 44px;
  }
  .hero__nowrap{
    white-space: normal;
  }
}

/* =========================
   BUTTON HOVER + SHINE (1/4 sec)
   ========================= */

.btn,
.hero-btn{
  position: relative;
  overflow: hidden;
}

.btn > *,
.hero-btn > *{
  position: relative;
  z-index: 2;
}

/* оставляем brightness для .btn, но hero-btn уже переопределён выше на hover */
.btn:hover{
  filter: brightness(0.92);
}

.btn:active,
.hero-btn:active{
  transform: translateY(1px);
}

.btn::after,
.hero-btn::after{
  content: "";
  position: absolute;
  top: -20%;
  left: -70%;
  width: 40%;
  height: 140%;
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0) 100%
  );

  animation: btnShine 4s infinite;
}

.hero-btn::after{
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.10) 50%,
    rgba(0,0,0,0) 100%
  );
}

@keyframes btnShine{
  0%, 70%   { left: -70%; opacity: 0; }
  72%       { opacity: 1; }
  88%       { left: 120%; opacity: 1; }
  100%      { left: 120%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
  .btn::after,
  .hero-btn::after{
    animation: none;
  }
}

/* ABOUT */
.about{
  padding: 120px 0;
  background: #FDFDFD;
}

.about__grid{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  gap:175px;
}

.about__left{
  max-width: 720px;
}

.about__title{
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1D201F;
  margin-bottom: 28px;
}

.about__text{
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1D201F;
}

.about__stats{
  display: flex;
  flex-wrap: wrap;
  column-gap: 100px;
  row-gap: 35px;
}

.about-stat{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-stat__num{
  font-family: "SF Pro Display", Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1D201F;
  margin-bottom: 6px;
  white-space: nowrap;
}

.about-stat__label{
  font-family: "SF Pro Display", Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1D201F;
}

@media (max-width: 980px){
  .about{
    padding: 0px 0;
  }
  .about__grid{
    flex-direction: column;
    gap: 40px;
  }
  .about__stats{
    width: 100%;
    column-gap: 40px;
  }
  .about-stat{
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 560px){
  .about-stat{
    width: 100%;
  }
}

/* DIRECTIONS */
.directions{
  padding: 0 0 120px;
}

.directions__title{
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1D201F;
  margin: 0 0 50px;
}

.directions__grid{
  display: flex;
  gap: 15px;
}

.dir-card{
  position: relative;
  flex: 1 1 0;
  min-height: 366px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #FDFDFD;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.dir-card--left{ background-image: url("/img/projects-left.jpg"); }
.dir-card--right{ background-image: url("/img/projects-right.jpg"); }

.dir-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.25), rgba(148,148,148,0.25)),
    linear-gradient(0deg, rgba(0,0,0,0.25), rgba(0,0,0,0.25));
  transition: filter .2s ease, opacity .2s ease;
}

.dir-card:hover::before{
  opacity: 0.92;
  filter: brightness(0.90);
}

.dir-card__more{
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  z-index: 2;

  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #FDFDFD;
  border-bottom: 1px solid #ffffff78;
}

.dir-card__more img{
  width: 16px;
  height: 16px;
  display:block;
}

.dir-card__panel{
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 13px;
  height: 146px;
  padding: 15px;
  border-radius: 10px;
  z-index: 2;

  background: rgb(139 139 139 / 25%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dir-card__h{
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #FDFDFD;
}

.dir-card__p{
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.05em;
  color: #FDFDFD;
  overflow: hidden;
}

@media (max-width: 980px){
  .directions__grid{
    flex-direction: column;
  }
  .dir-card{
    min-height: 340px;
  }
}

/* ADVANTAGES */
.advantages{
  padding: 60px 0;
  background: #FDFDFD;
}

.advantages__top{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.advantages__title{
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1D201F;
}

/* ADV button (green) */
.adv-btn{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;

  background: #01373E;
  border-radius: 50px;

  padding: 7px 10px 7px 25px;
  color: #fff;
  white-space: nowrap;

  position: relative;
  overflow: hidden;
  transition: filter .2s ease, opacity .2s ease, transform .15s ease, background .2s ease, color .2s ease;
}

/* кружок в преимуществах: белый + зелёная стрелка */
.adv-btn__icon{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #01373E;
  transition: background .2s ease, color .2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 42px;
}

/* SVG внутри advantages */
.adv-btn__icon svg{
  width: 18px;
  height: 18px;
  display:block;
}

/* hover: инверсия */
.adv-btn:hover{
  background: #fff;
  color: #01373E;
  box-shadow: 0 0 0 1px #01373E inset;
  filter: none;
}

.adv-btn:hover .adv-btn__icon{
  background: #01373E;
  color: #fff;
}

.advantages__grid{
  margin-top: 60px;
  display: flex;
  gap: 15px;
}

.adv-card{
  flex: 1 1 0;
  min-height: 366px;
  background: #E1F9ED;
  border-radius: 20px;
  padding: 30px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.adv-card__top{
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1D201F;
}

.adv-card__bottom{
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1D201F;
  opacity: 0.6;
}

@media (max-width: 980px){
  .advantages{
    padding: 72px 0;
  }
  .advantages__top{
    flex-direction: column;
    align-items: flex-start;
  }
  .advantages__title{
    font-size: 44px;
  }
  .advantages__grid{
    flex-direction: column;
  }
  .adv-card{
    min-height: 280px;
  }
}

/* SVG arrow sizing (на всякий случай, если svg с классом) */
.btn-arrow{
  width: 18px;
  height: 18px;
  display: block;
}

/* TEAM */
.team{
  padding: 60px 0;
  background: #FDFDFD;
}

.team__top{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.team__title{
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;          /* 100% */
  letter-spacing: -0.03em; /* -3% */
  color: #1D201F;
}

.team__text{
  max-width: 520px;        /* чтобы выглядело как на макете */
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;          /* 100% */
  letter-spacing: -0.05em; /* -5% */
  color: #1D201F;
  opacity: 0.6;
}

.team__media{
  margin-top: 60px;
}

.team__media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* адаптив */
@media (max-width: 980px){
  .team{
    padding: 72px 0;
  }
  .team__top{
    flex-direction: column;
    align-items: flex-end;
  }
  .team__title{
    font-size: 44px;
  }
  .team__text{
    max-width: 100%;
  }
}

/* REVIEWS */
.reviews{
  padding: 60px 0;
  background: #FDFDFD;
}

.reviews__top{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.reviews__title{
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1D201F;
}

.reviews__body{
  margin-top: 60px;
  width: 100%;
}

.reviews__body .sw-app{
  width: 100%;
}

@media (max-width: 980px){
  .reviews{
    padding: 72px 0;
  }

  .reviews__title{
    font-size: 44px;
  }

  .reviews__body{
    margin-top: 40px;
  }
}

/* FOOTER */
.site-footer{
  border-top: 0;
  padding: 60px 0 40px;
  background: #FDFDFD;
}

.footer-map{
  width: 100%;
  margin-bottom: 30px;
}

#mapa{
  width: 100%;
  height: 390px;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
}

.footer-box{
  background: #01373E;
  border-radius: 10px;
  padding: 30px;
}

.footer-top{
  display: grid;
  grid-template-columns: minmax(260px, 30%) 200px minmax(360px, 1fr) 30px minmax(280px, 320px);
  row-gap: 40px;
  align-items: start;
}

.footer-col--brand{
  grid-column: 1;
}

.footer-col--menu{
  grid-column: 3;
}

.footer-col--contacts{
  grid-column: 5;
}

.footer-col--brand{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo{
  display: inline-block;
}

.footer-logo img{
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
}

.footer-copy{
  margin-top: 30px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #FDFDFD;
}

.footer-col--menu,
.footer-col--contacts{
  justify-self: end;
}

.footer-title{
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #FDFDFD;
}

.footer-menu-grid{
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-menu-list{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-menu-list a{
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0em;
  color: #FDFDFD;
  text-decoration: none;
  transition: opacity .2s ease;
  white-space: nowrap;
}

.footer-menu-list a:hover{
  opacity: .75;
}

.footer-contacts{
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-row{
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-row img{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

.footer-contact-row span,
.footer-contact-row a{
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #FDFDFD;
  text-decoration: none;
  transition: opacity .2s ease;
}

.footer-contact-row a:hover{
  opacity: .75;
}

.footer-info-block{
  margin-top: 30px;
}

.footer-policy{
  display: inline-block;
  margin-top: 15px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #FDFDFD;
  text-decoration: none;
  transition: opacity .2s ease;
}

.footer-policy:hover{
  opacity: .75;
}

.footer-bottom{
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
}

.footer-bottom__left{
  display: flex;
  align-items: center;
}

.footer-bottom__right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-btn{
  width: auto;
  border: 1px solid transparent;
}

.footer-btn:hover{
  width: auto;
  border: 1px solid #fff;
}

.footer-socials{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FDFDFD;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}

.footer-social:hover{
  transform: translateY(-1px);
  opacity: .9;
}

.footer-social img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-social__icon{
  display: block;
  width: 100%;
  height: 100%;
  background: #01373E;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.footer-social__icon--tg{
  -webkit-mask-image: url("/img/tg.svg");
  mask-image: url("/img/tg.svg");
}

.footer-social__icon--vk{
  -webkit-mask-image: url("/img/vk.svg");
  mask-image: url("/img/vk.svg");
}

.footer-social__icon--max{
  -webkit-mask-image: url("/img/max.svg");
  mask-image: url("/img/max.svg");
}
@media (max-width: 1280px){
	.about__grid{
		gap:130px;	
	}
	.dir-card__p {
		font-size: 17px;
		line-height: 22px;
	}
	.about__left{
		max-width:650px;
	}
	.about-stat__num{
		font-size:60px;
	}
	.hero__nowrap{
		white-space: unset;	
	}
  .footer-top{
    grid-template-columns: minmax(240px, 28%) 80px minmax(320px, 1fr) 30px minmax(260px, 300px);
  }
}
@media (max-width: 1140px){
	.dir-card__p {
		font-size: 16px;
	}
	.about-stat__num{
		font-size:55px;
	}
	.about-stat__label {
		font-size: 18px;
	}
	.about__left {
        max-width: 580px;
    }
	.nav__link {
        font-size: 14px;
    }
}
@media (max-width: 1050px){
	.about-stat__num{
		font-size:50px;
	}
    .about-stat__label {
        font-size: 16px;
    }
	.dir-card__panel {
		height: 165px;
	}
}
@media (max-width: 980px){
	.dir-card__panel {
		height: 200px;
	}
  .site-footer{
    padding: 60px 0 32px;
  }

  #mapa{
    height: 320px;
  }

  .footer-box{
    padding: 24px;
  }

  .footer-top{
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 32px;
  }

  .footer-col--menu,
  .footer-col--contacts{
    justify-self: start;
  }

  .footer-logo img{
    max-width: 260px;
  }

  .footer-title{
    font-size: 22px;
  }

  .footer-menu-grid{
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom{
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .footer-bottom__right{
    justify-content: flex-start;
  }
}

@media (max-width: 640px){
  .site-footer{
    padding: 50px 0 28px;
  }

  .footer-map{
    margin-bottom: 20px;
  }

  #mapa{
    height: 260px;
  }

  .footer-box{
    padding: 20px;
  }

  .footer-logo img{
    max-width: 220px;
  }

  .footer-copy{
    margin-top: 24px;
    font-size: 16px;
  }

  .footer-title{
    font-size: 20px;
  }

  .footer-menu-grid{
    grid-template-columns: 1fr;
    gap: 14px;
	display: flex;
  }

  .footer-menu-list a,
  .footer-contact-row span,
  .footer-contact-row a,
  .footer-policy{
    font-size: 15px;
  }

  .footer-btn{
    width: 100%;
  }

  .footer-socials{
    justify-content: flex-start;
  }
}

/* =========================
   GLOBAL RESPONSIVE HELPERS
   ========================= */

html{
  scroll-behavior: smooth;
}

body.is-lock{
  overflow: hidden;
}

img{
  max-width: 100%;
}

.header-top,
.header-main,
.site-header{
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

/* Общие размеры больших заголовков */
.about__title,
.directions__title,
.advantages__title,
.team__title,
.steps__title,
.projects__title,
.examples__title,
.reviews__title,
.faq__title,
.land__title,
.consult__title, .services__title{
  font-size: 70px;
}

/* =========================
   STICKY HEADER
   ========================= */

.site-header{
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #fff;
}

.site-header.is-sticky{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

.site-header.is-sticky .header-top,
.site-header.is-sticky .header-main{
  background: rgba(253,253,253,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.is-sticky .header-main__inner{
  min-height: 72px;
}

.is-sticky .header-top{
display:none;
}

.site-header.is-sticky .header-main{
  background: rgba(253,253,253,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.is-sticky .header-main__inner{
  min-height: 72px;
}

/* =========================
   BURGER
   ========================= */

.header-burger{
  display: none;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  border: 1px solid #1D201F;
  background: #fff;
  padding: 0;
  margin-left: 15px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.header-burger span{
  display: block;
  width: 13px;
  height: 1px;
  background: #1D201F;
  border-radius: 2px;
}

.header-burger:hover{
  opacity: .9;
}

/* =========================
   MOBILE MENU
   ========================= */

.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.mobile-menu.is-open{
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.mobile-menu__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.70);
  opacity: 0;
  transition: opacity .28s ease;
}

.mobile-menu__dialog{
  position: absolute;
  top: 20px;
  right: max(23px, calc((100vw - 1366px) / 2 + 23px));
  width: 386px;
  max-width: calc(100vw - 46px);
  height: 595px;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  transform: translateX(110%);
  transition: transform .32s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu__overlay{
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu__dialog{
  transform: translateX(0);
}

.mobile-menu__head{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.mobile-menu__logo{
  display: inline-block;
  max-width: 166px;
}

.mobile-menu__logo img{
  display: block;
  width: 100%;
  height: auto;
}

.mobile-menu__close{
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  border: 1px solid #1D201F;
  background: #fff;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.mobile-menu__close span{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  background: #1D201F;
  transform-origin: center;
}

.mobile-menu__close span:first-child{
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:last-child{
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu__nav a{
  text-decoration: none;
  color: #191919;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.mobile-menu__contacts{
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu__contact{
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
  color: #1D201F;
}

.mobile-menu__contact img{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  margin-top: 1px;
}

.mobile-menu__contact span{
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.mobile-menu__socials{
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-menu__social{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1D201F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 6px;
}

.mobile-menu__social-icon{
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.mobile-menu__social-icon--tg{
  -webkit-mask-image: url("/img/tg.svg");
  mask-image: url("/img/tg.svg");
}

.mobile-menu__social-icon--vk{
  -webkit-mask-image: url("/img/vk.svg");
  mask-image: url("/img/vk.svg");
}

.mobile-menu__social-icon--max{
  -webkit-mask-image: url("/img/max.svg");
  mask-image: url("/img/max.svg");
}

.mobile-menu__ask{
  display: none;
  margin-top: 30px;
  padding-bottom: 4px;
  border-bottom: 1px solid #1D201F;
  text-decoration: none;
  color: #1D201F;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-menu__ask span:first-child{
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1D201F;
}

.mobile-menu__ask-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1D201F;
}

/* =========================
   HERO
   ========================= */

.hero{
  height: 756px;
}


.hero__lead{
  font-size: 24px;
  line-height: 30px;
}

/* =========================
   ABOUT
   ========================= */

.about__grid{
  gap: 175px;
}

.about__stats{
  column-gap: 100px;
  row-gap: 35px;
}

/* =========================
   STEP SLIDER DEFAULT
   ========================= */

@media (min-width: 769px){
  .steps-track{
    display: block;
  }
}

/* =========================
   1280
   ========================= */

@media (max-width: 1280px){
  .hero{
    height: 737px;
  }

  .hero__lead{
    font-size: 20px;
    line-height: 1.25;
    max-width: 560px;
  }

  .hero__title{
    font-size: 65px;
  }

  .about__title,
  .directions__title,
  .advantages__title,
  .team__title,
  .steps__title,
  .projects__title,
  .examples__title,
  .reviews__title,
  .faq__title,
  .land__title,
  .consult__title, .services__title{
    font-size: 65px;
  }

  .nav{
    gap: 16px;
  }

  .nav__link{
    font-size: 18px;
  }

  .btn{
    font-size: 18px;
    padding: 11px 22px;
  }

  .about__grid{
    gap: 80px;
  }

  .about__title,
  .directions__title,
  .advantages__title,
  .team__title,
  .reviews__title{
    margin-bottom: 24px;
  }
}
@media (max-width: 1140px){
	.about-stat__num{
		font-size:55px;
	}
	.about-stat__label {
		font-size: 18px;
	}
	.about__left {
        max-width: 580px;
    }
	.nav__link {
        font-size: 14px;
    }
}
@media (max-width: 1050px){
	.about-stat__num{
		font-size:50px;
	}
    .about-stat__label {
        font-size: 16px;
    }
}
/* =========================
   960
   ========================= */

@media (max-width: 980px){
  .header-top{
    display: none;
  }

  .nav{
    display: none;
  }

  .header-burger{
    display: inline-flex;
  }

  .header-main__inner{
    min-height: 84px;
    padding: 15px 23px;
    gap: 0;
  }

  .logo{
    margin-right: auto;
  }

  .btn--dark{
    margin-left: auto;
  }

  .hero{
    height: 718px;
  }

  .hero__inner{
    padding-bottom: 48px;
  }

  .hero__title{
    font-size: 65px;
  }

  .hero__lead{
    font-size: 18px;
    line-height: 1.25;
    max-width: 520px;
  }

  .about__title,
  .directions__title,
  .advantages__title,
  .team__title,
  .steps__title,
  .projects__title,
  .examples__title,
  .reviews__title,
  .faq__title,
  .land__title,
  .consult__title, .services__title{
    font-size: 55px;
  }

  .hero-btn__text,
  .adv-btn__text{
    font-size: 18px;
  }

  .about{
    padding: 90px 0;
  }

  .about__grid{
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .about__left{
    max-width: 100%;
  }

  .about__stats{
		width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        column-gap: 90px;
        row-gap: 90px;
        justify-content: start;
  }
  .about-stat {
        width: auto;
    }

  .directions,
  .advantages,
  .team,
  .steps,
  .reviews{
    padding-top: 0px;
    padding-bottom: 60px;
  }

  .directions__grid,
  .advantages__grid{
    flex-direction: row;
  }
  .dir-card{
  min-height:418px;
  }

  .team__top,
  .advantages__top,
  .steps__top{
    flex-direction: column;
    align-items: flex-start;
  }

  .team__text{
    max-width: 100%;
    font-size: 18px;
    line-height: 1.25;
  }

  .footer-top{
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .footer-col--brand,
  .footer-col--menu,
  .footer-col--contacts{
    grid-column: auto;
    justify-self: start;
  }

  .footer-bottom{
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-bottom__right{
    justify-content: flex-start;
  }
}

/* =========================
   768
   ========================= */

@media (max-width: 768px){
.directions__grid, .advantages__grid{
    flex-direction: column;
  }
  .container{
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-main__inner{
    padding-left: 15px;
    padding-right: 15px;
  }

  .mobile-menu__dialog{
    right: 15px;
  }

  .hero{
    height: 618px;
  }

  .hero__inner{
    padding-bottom: 36px;
  }

  .hero__bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero__title{
    font-size: 55px;
    max-width: 100%;
  }

  .hero__lead{
    max-width: 470px;
  }

  .about__title,
  .directions__title,
  .advantages__title,
  .team__title,
  .steps__title,
  .projects__title,
  .examples__title,
  .reviews__title,
  .faq__title,
  .land__title,
  .consult__title, .services__title{
    font-size: 50px;
  }

  .about{
    padding: 60px 0;
  }

  .about__stats{
    display: row;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .about-stat{
    width: auto;
  }

  .about-stat__num{
    font-size: 52px;
  }

  .about-stat__label{
    font-size: 18px;
    line-height: 1.1;
  }

  .dir-card{
    min-height: 320px;
  }

  .dir-card__panel{
    height: auto;
    min-height: 130px;
  }

  .dir-card__h{
    font-size: 26px;
  }

  .dir-card__p{
    font-size: 16px;
    line-height: 1.3;
  }

  .adv-card{
	min-height: unset;
	padding: 24px;
	gap: 30px;
  }

  .adv-card__top{
    font-size: 22px;
    line-height: 1.1;
  }

  .adv-card__bottom{
    font-size: 18px;
    line-height: 1.2;
  }

  .team__media{
    margin-top: 36px;
  }


  .steps__viewport{
    height: auto !important;
    overflow: visible;
  }

  .steps-track{
    transform: none !important;
    transition: none !important;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .step-slide{
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,.2);
  }

  .step-slide__right{
    width: 100%;
    height: auto;
    flex: none;
  }

  .step-slide__right img{
    width: 100%;
    height: auto;
    aspect-ratio: 653 / 400;
    transform: none !important;
  }

  .step-slide__title{
    font-size: 34px;
    line-height: 1.05;
  }

  .step-slide__sub{
    font-size: 20px;
    line-height: 1.15;
  }

  .step-slide__text{
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.25;
  }

  .steps__nav-btn,
  .steps-dots{
    display: none !important;
  }
}

/* =========================
   480
   ========================= */

@media (max-width: 480px){
  .hero{
    height: 618px;
  }

  .hero__title{
    font-size: 45px;
    line-height: 0.98;
  }

  .hero__lead{
    font-size: 16px;
    line-height: 1.3;
    max-width: 100%;
  }

  .hero-btn,
  .adv-btn{
    width: 100%;
    justify-content: space-between;
  }

  .btn{
    font-size: 16px;
    padding: 10px 18px;
  }

  .header-main__inner{
    min-height: 74px;
  }

  .logo img{
    width: 140px;
  }

  .header-burger{
    margin-left: 12px;
  }

  .about__title,
  .directions__title,
  .advantages__title,
  .team__title,
  .steps__title,
  .projects__title,
  .examples__title,
  .reviews__title,
  .faq__title,
  .land__title,
  .consult__title, .services__title{
    font-size: 40px;
  }

  .about__text,
  .team__text{
    font-size: 16px;
    line-height: 1.35;
  }

  .about__stats{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-stat__num{
    font-size: 46px;
  }

  .dir-card{
    min-height: 300px;
  }

  .dir-card__more{
    font-size: 16px;
  }

  .dir-card__h{
    font-size: 22px;
  }

  .dir-card__p{
    font-size: 15px;
  }

  .mobile-menu__dialog{
    top: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    border-radius: 0;
    padding: 40px 30px;
  }

  .mobile-menu__nav{
    margin-top: 28px;
  }

  .mobile-menu__contacts{
    margin-top: 50px;
  }

  .mobile-menu__contact span,
  .mobile-menu__nav a{
    font-size: 18px;
  }

  .mobile-menu__ask{
    display: flex;
  }

  .footer-box{
    padding: 20px 15px;
  }

  #mapa{
    height: 240px;
  }
}

/* =========================
   360
   ========================= */

@media (max-width: 360px){
  .hero{
    height: 618px;
  }

  .hero__title{
    font-size: 35px;
  }

  .hero__lead{
    font-size: 14px;
    line-height: 1.35;
  }

  .btn{
    font-size: 15px;
    padding: 10px 14px;
  }

  .btn--dark{
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-burger{
    margin-left: 10px;
  }

  .about__title,
  .directions__title,
  .advantages__title,
  .team__title,
  .steps__title,
  .projects__title,
  .examples__title,
  .reviews__title,
  .faq__title,
  .land__title,
  .consult__title, .services__title{
    font-size: 35px;
  }

  .about__stats{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .about-stat:last-child{
    grid-column: 1 / -1;
  }

  .about-stat__num{
    font-size: 40px;
  }

  .about-stat__label{
    font-size: 16px;
  }

  .mobile-menu__dialog{
    padding: 20px 15px;
  }

  .mobile-menu__logo{
    max-width: 150px;
  }

  .mobile-menu__nav a{
    font-size: 18px;
  }

  .mobile-menu__contact span{
    font-size: 16px;
    line-height: 1.2;
  }

  .mobile-menu__contacts{
    margin-top: 34px;
    gap: 16px;
  }

  .mobile-menu__socials{
    margin-top: 40px;
  }

  .mobile-menu__ask{
    display: flex;
  }

  .step-slide__title{
    font-size: 28px;
  }

  .step-slide__sub{
    font-size: 18px;
  }

  .step-slide__text{
    font-size: 16px;
  }
}

.examples__right,
.services__right{
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.examples-track,
.services-track{
  will-change: transform;
}

.examples__right,
.services__right{
  touch-action: pan-y;
}


/* LIGHTBOX */
.land-lightbox{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.land-lightbox.is-open{
  display: block;
}

.land-lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.land-lightbox__stage{
  position: absolute;
  inset: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.land-lightbox__img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #00000033;
}

.land-lightbox__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 44px;
  background: #fff;
  color: #1D201F;
}

@media (max-width: 980px){
  .land-lightbox__stage{
    inset: 20px;
  }

  .land-lightbox__close{
    top: 12px;
    right: 12px;
  }
}