@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background: #0E0D16;
  color: #fff;
}

/* Контейнер */
.container {
  margin: 0 auto;
  padding-inline: clamp(40px, 7vw, 100px);
}
.header__burger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}
.mobile-menu{
  display: none;
}
/* === HEADER === */
.header {
  padding: 32px 0;
  background: #070a1b;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: clamp(40px, 5vw, 60px);
  padding: clamp(5px, 2vw, 10px) clamp(10px, 3vw, 20px);
}

.header__logo {
  display: flex;
}

.header__nav {
  display: flex;
  gap: 24px;
}

.header__nav a {
  text-decoration: none;
  color: #0E0D16;
  font-weight: 600;
  transition: 0.3s;
  line-height: 1.2;
  letter-spacing: -0.32px;
}

.header__nav a:hover {
  color: #5ea0ff;
}

.header .btn--header {
  background: linear-gradient(90deg, #2D69FB, #2D69FB);
  color: #F0F0F0;
  padding: 15px 40px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  line-height: 1.1;
}

.header .btn--header:hover {
  opacity: 0.85;
  transform: translateY(-3px);
}

/* === HERO === */
.hero {
  padding: clamp(32px, 3vw, 40px) 0 clamp(160px, 14vw, 200px);
  background: #070a1b;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero__content {
  max-width: 720px;
}

.hero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -1.12px;
}

.hero__title .accent-purple {
  background: linear-gradient(-90deg, #2D69FB 65%, #D278FE 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: gradientFlow 8s ease infinite;
}

.hero__subtitle {
  font-size: 20px;
  line-height: 1.2;
  color: #A2A2A2;
  margin-bottom: clamp(40px, 5vw, 60px);
  max-width: clamp(320px, 36vw, 510px);
  letter-spacing: -0.04px;
  font-variant-numeric: lining-nums proportional-nums;
}


.hero__sect {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero .btn--primary {
  display: inline-block;
  padding: clamp(16px, 1.8vw, 20px) clamp(32px, 4vw, 45px);
  border-radius: clamp(40px, 5vw, 60px);
  background: linear-gradient(90deg, #2D69FB, #D278FE, #2D69FB);
  background-size: 200% 200%;
  color: #F0F0F0;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.1;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.hero .btn--primary:hover {
  transform: translateY(-2px);
}

.hero__note {
  font-size: 16px;
  color: #A2A2A2;
  line-height: 1.2;
  max-width: clamp(280px, 22vw, 330px);
  font-variant-numeric: lining-nums proportional-nums;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 20px);
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.hero__img {
  border-radius: 16px;
  max-width: clamp(240px, 24vw, 320px);
  flex-shrink: 0;
}

.hero__ceo {
  display: flex;
}

.hero__ceo img {
  width: clamp(160px, 15vw, 210px);
  height: clamp(190px, 18vw, 256px);
  border-radius: 16px;
  object-fit: cover;
}

.hero__ceo-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #1f1e28;
  padding: 16px;
  border-radius: 16px;
  height: clamp(70px, 8vw, 90px);
  gap: 10px;
}

.hero__ceo-name {
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.1;
  color: #F0F0F0;
}

.hero__ceo-position {
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.1;
  background: linear-gradient(90deg, #F66979 0%, #FBA05A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats {
  padding: 0 0 clamp(60px, 15vw, 200px);
  background: #070a1b;
}

.stats__title {
  font-size: clamp(22px, 3.5vw, 48px);
  text-align: center;
  font-weight: 700;
  color: #F0F0F0;
  line-height: 1;
  max-width: clamp(500px, 75vw, 1030px);
  margin: 0 auto clamp(30px, 4vw, 50px);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.5vw, 20px);
}

.stats__item {
  border-radius: clamp(12px, 1.5vw, 16px);
  background: #1F1E28;
  padding: clamp(15px, 1.5vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 2;
}

.stats__item--wide {
  grid-column: span 3;
}

.stats__number {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: #F0F0F0;
  font-variant-numeric: lining-nums proportional-nums;
  line-height: 1;
}

.stats__label {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-fill-color: transparent;
  margin: 10px 0 20px 0;
}

.stats__item:nth-child(1) .stats__label {
  background-image: linear-gradient(-180deg, #2D69FB 100%, #D278FE 100%);
}

.stats__item:nth-child(2) .stats__label {
  background-image: linear-gradient(90deg, #D278FE 0%, #F66979 100%);
}

.stats__item:nth-child(3) .stats__label {
  background-image: linear-gradient(90deg, #F66979 0%, #FBA05A 100%);
}

.stats__item:nth-child(4) .stats__label {
  background-image: linear-gradient(340deg, #2D69FB 40%, #D278FE 75%);
}

.stats__desc {
  font-size: 16px;
  color: #A2A2A2;
  line-height: 1.2;
  max-width: 85%;
}

.btn--secondary {
  grid-column: span 3;
  align-self: end;
  padding: clamp(15px, 1.5vw, 20px) clamp(60px, 9vw, 125px);
  border-radius: clamp(12px, 5vw, 60px);
  color: #fff;
  font-weight: 600;
  line-height: 1.1;
  font-size: clamp(16px, 1.5vw, 20px);
  text-decoration: none;
  background: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  width: auto;
  border: 2px solid transparent;
  background-image: linear-gradient(#070a1b, #070a1b), linear-gradient(90deg, #D278FE, #F66979, #D278FE);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-size: 300% 300%;
}

.btn--secondary:hover {
  transform: translateY(-2px);
}

.confidence {
  padding: 0 0 clamp(120px, 10vw, 200px);
  color: #fff;
  background: #070a1b;
}

.confidence__title {
  font-size: clamp(22px, 3.5vw, 48px);
  text-align: center;
  font-weight: 700;
  color: #F0F0F0;
  line-height: 1;
  max-width: clamp(500px, 75vw, 1030px);
  margin: 0 auto clamp(30px, 4vw, 50px);
  font-variant-numeric: lining-nums proportional-nums;
}

/* Основной скролл */
.confidence-scroll {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 40px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  cursor: grab;
}
.confidence-scroll::-webkit-scrollbar {
  display: none;
}

/* Колонка */
.ci-col {
  flex: 0 0 25%;
  height: 250px; /* одинаковая высота */
  position: relative;
  padding: 20px;
}

/* Вертикальные линии */
.ci-col::before,
.ci-col::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.15);
}
.ci-col::before { left: 0; }
.ci-col::after  { right: 0; }

/* Внутренний контейнер (двигается только он) */
.ci-inner {
  position: absolute;
  left: 0;
  right: 0;
  transition: all .45s ease;
}

/* Ступени — как на сайте */
.ci-col.pos-1 .ci-inner { top: 180px;
    left: 20px; } /* низко */
.ci-col.pos-2 .ci-inner {     top: 130px;
    left: 20px; }
.ci-col.pos-3 .ci-inner { top: 70px;left: 20px; }
.ci-col.pos-4 .ci-inner { top: 0px; left: 20px;} /* почти вверху */

/* Тексты */
.ci-title {
  color: #F0F0F0;
font-variant-numeric: lining-nums proportional-nums;
font-family: Raleway;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: 100%;
margin-bottom: 20px;
}
.ci-sub {
color: #A2A2A2;
font-family: Raleway;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 1.2; 
margin-bottom: 20px;

}

.blue { color: #4D7CFE; }
.purple { color: #C57CFE; }
.red { color: #F25E5E; }
.orange { color: #FF9A42; }

/* Скрытый текст */
.ci-text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: .4s ease;
  color: #A2A2A2;
font-family: Raleway;
font-size: 16px;
font-style: normal;
line-height: 1.2; 
padding-right: 20px;
}

/* Hover: только поднимается text-wrapper */
.ci-col:hover .ci-inner {
  top: 20px !important; /* выравниваем вверх */
}

/* Показываем длинный текст */
.ci-col:hover .ci-text {
  opacity: 1;
  max-height: 300px;
}

.confidence__note {
  position: relative;
  text-align: center;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  border-radius: clamp(12px, 1.2vw, 16px);
  padding: clamp(10px, 1.5vw, 20px);
  margin: 0 auto;
  line-height: 1.1;
  background: #070a1b;
  z-index: 1;
}

.confidence__note::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, #2D69FB, #D278FE);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.confidence .accent-purple {
  color: #D278FE;
}

.services {
  padding: 0 0 clamp(80px, 7vw, 100px);
  background: #070a1b;
  color: #fff;
  overflow: hidden;
}

.services__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.services__content img {
  padding: 12px;
}

.services__text {
  max-width: 410px;
}

.services__title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 48px);
  max-width: clamp(500px, 55vw, 790px);
  margin: 0 auto clamp(30px, 4vw, 50px);
}

.services__title span {
  background: linear-gradient(90deg, #2D69FB, #D278FE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.96px;
  line-height: 1;
}

.services__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__track {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
  transition: transform 0.6s ease;
  transform: translateX(0);
}

.services__item {
  flex: 0 0 60%;
  background: #1F1E28;
  border-radius: 20px;
  padding: clamp(15px, 1.5vw, 20px);
  text-align: left;
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.6s ease;
  box-shadow: none;
  filter: blur(1px);
  max-width: 610px;
}

.services__item.active {
  opacity: 1;
  transform: scale(1);
  filter: none;
  z-index: 5;
}

.services__item h3 {
  font-size: clamp(20px, 3.5vw, 40px);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1;
}

.services__item p {
  color: #A2A2A2;
  margin-bottom: 65px;
  font-size: 16px;
  line-height: 1.2;
  
}

.services__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services__tags span {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 60px;
  padding: 4px 8px;
  font-size: 14px;
  color: #A2A2A2;
  line-height: 1.2;
  
}

.services__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
transition: transform 0.6s ease;
  transform-origin: center;
    z-index: 10;
}

.services__arrow {
  transition: background 0.3s ease;
}

.services__arrow svg {
  transition: transform 0.6s ease;
  transform-origin: center center;
  display: block;
}

.services__arrow:hover svg {
  transform: rotate(360deg);
}

.services__arrow--left {
  left: 21%;
}

.services__arrow--right {
  right: 20%;
}

.services__cta {
  margin-top: 50px;
  background: linear-gradient(90deg, #2D69FB 0%, #D278FE 100%);
  border-radius: clamp(12px, 1.2vw, 16px);
  padding: clamp(10px, 1.5vw, 20px) clamp(20px, 3vw, 60px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.1vw, 15px);
  box-shadow: 0 0 40px rgba(210, 120, 254, 0.3);
}

.services__cta-title {
  font-size: clamp(20px, 3.5vw, 40px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}

.services__cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.48px;
  margin-bottom: 17px;
}

.btn--cta {
  display: inline-block;
  padding: clamp(14px, 1.2vw, 16px) clamp(40px, 4.5vw, 64px);
  border-radius: 60px;
  background: #fff;
  color: #0E0D16;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: 1.1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .btn--cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.works {
  background: #f3f3f3;
  padding: clamp(80px, 7vw, 100px) 0;
  color: #0E0D16;
}

.works__title {
  font-weight: 700;
  font-size: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(24px, 2.5vw, 32px);
  line-height: 1;
  letter-spacing: -0.96px;
}

.works__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(30px, 4vw, 60px);
}

.works__filters button {
  font-family: Raleway;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 60px;
  padding: 8px 12px;
  font-size: 18px;
  color: #A2A2A2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.works__filters button:hover {
  background: rgba(0, 0, 0, 0.1);
}

.works__filters button.active {
  background: linear-gradient(90deg, #2D69FB, #D278FE);
  color: #fff;
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  transition: all 0.3s ease;
}

.works__item {
  border-radius: 16px;
  padding: clamp(10px, 1.5vw, 20px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.4s ease, opacity 0.4s ease;
  margin-top: 10px;
  opacity: 1;
  transform: scale(1);
}

.works__item.hide {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
}

.works__item--blue {
  background: #2D69FB;
}

.works__item--violet {
  background: #D278FE;
}
.works__item--red {
  background: #F25E5E;
}
.works__item--orange {
  background: #FF9A42;;
}

.works__item h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: lining-nums proportional-nums;
  margin-bottom: 20px;
}

.works__item p {
  font-size: 18px;
  line-height: 1.2;
  max-width: 540px;
}

.works__logo--first {
  width: auto;
  height: 85px;
  margin-bottom: 70px;
}

.works__logo--second {
  width: auto;
  height: 85px;
  margin-bottom: 70px;
}

.works__logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    align-self: flex-start;
    margin-bottom: 70px;
}

.pricing {
  position: relative;
  padding: 100px 0 200px;
  background: #0E0D16;
  color: #fff;
  overflow: hidden;
}

.pricing__title {
  text-align: center;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1;
  letter-spacing: -0.96px;
}

.pricing__subtitle {
  text-align: center;
  color: #A2A2A2;
  margin-bottom: 50px;
  font-size: 18px;
  
  line-height: 21.6px;
  
}

.pricing__scroll {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.pricing__scroll::-webkit-scrollbar {
  display: none;
}

.pricing__scroll::before, .pricing__scroll::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}


.pricing__track {
  display: flex;
  gap: 20px;
  width: max-content;
  scroll-snap-type: x mandatory;
}

.pricing__badge {
  text-align: center;
  border: 0.5px solid #A2A2A2;
  padding: 4px 8px;
  border-radius: 60px;
  color: #A2A2A2;
  width: fit-content;
  margin: 0 auto;
  font-size: 18px;
}

.pricing__card {
  flex: 0 0 400px;
  background: #1f1e28;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.4s ease;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing__card:last-child {
  justify-content: space-around;
}



.pricing__card:nth-child(4) .pricing__badge {
  color: #FFF;
  border: 0.5px solid #fff;
}

.pricing__card h4 {
  font-size: 32px;
  font-weight: 700;
  margin: 30px 15px 20px;
  line-height: 1;
}

.pricing__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pricing__card ul .da {
  opacity: 0;
  pointer-events: none;
  min-height: 24px;
}

.pricing__card ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.2;
  color: #A2A2A2;
}

.pricing__card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 10px;
  height: 15px;
  background: url("../img/like.svg") no-repeat center/contain;
}

.pricing__card:last-child li:first-child, .pricing__card:last-child li:nth-child(2) {
  color: #fff;
}

.pricing__price {
  font-variant-numeric: lining-nums proportional-nums;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin-top: 30px;
  background: linear-gradient(90deg, #2D69FB 0%, #D278FE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  text-align: center;
}

.pricing__card:last-child .pricing__price {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing__price .month {
  font-size: 16px;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #A2A2A2;
  background: none;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.48px;
  margin-left: 8px;
}

.pricing__card:last-child .pricing__price .month {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing .highlight {
  background: linear-gradient(135deg, #2d69fb, #d278fe);
}

.pricing__nav {
  margin-top: 40px;
  text-align: center;
}

.pricing__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1F1E28;
}

.pricing__dots span.active {
  background: #D278FE;
}

.pricing__note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  cursor: pointer;
}

.btn--price {
  display: inline-flex;
  background: linear-gradient(90deg, #2D69FB 0%, #D278FE 100%);
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  border-radius: 60px;
  padding: 16px 65px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(210, 120, 254, 0.25);
  width: fit-content;
  margin: 0 auto;
}

.pricing__card:last-child .btn--price {
  background: #fff;
  color: #000;
}

.btn--price:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(210, 120, 254, 0.45);
}

.faq {
  background: #0E0D16;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0 0 100px;
}

.faq__label {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #F0F0F0;
  margin-bottom: 16px;
  letter-spacing: -0.96px;
  line-height: 1;
}

.faq__title {
  color: #A2A2A2;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
}

.faq__title h2 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 50px;
}

.faq__items {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-top: 0.5px solid #464457;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.faq__item:not(.hidden):last-of-type {
  border-bottom: 0.5px solid #464457;
}

.faq__item.active {
  border-color: #A2A2A2;
}

.faq__item.active .faq__answer {
  max-height: 400px;
  opacity: 1;
  margin-top: 15px;
  max-width: 750px;
}

.faq__item.active .faq__icon {
  background: #1F1E28;
  border-radius: 60px;
  color: #A2A2A2;
  transform: none;
}

.faq__item.active .faq__icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq__question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-family: Raleway;
}

.faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: #fff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #A2A2A2;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq__btn-wrapper {
  margin-top: 20px;
  text-align: center;
}

.faq__btn {
  display: inline-block;
  background: linear-gradient(90deg, #D278FE 0%, #F66979 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq__btn:hover {
  opacity: 0.8;
  transform: translateY(2px);
}

.faq .hidden {
  display: none;
}

.faq img {
  width: 10px;
  height: 10px;
}

.contact {
  background: #fff;
  color: #000;
  padding: 100px 0;
}

.contact__inner {
  display: flex;
}

.contact__left {
  flex: 1;
}

.contact__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.96px;
  margin-bottom: 20px;
}

.contact__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  
}

.contact__form {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

.contact__form input {
  border: none;
  border-bottom: 1px solid #464457;
  padding: 25px 0 16px;
  font-size: 18px;
  background: transparent;
  outline: none;
  font-family: "Raleway";
}

.contact .form-group {
  position: relative;
  width: 100%;
}

.contact .dropdown-label {
  border-bottom: 1px solid #464457;
  padding: 25px 0 16px;
  font-size: clamp(12px, 1vw, 16px);
  color: #A2A2A2;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact .dropdown-placeholder {
  color: #A2A2A2;
}

.contact .dropdown-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
}

.contact .dropdown-arrow svg {
  transition: transform 0.3s ease;
}

.contact .dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  align-items: start;
}

.contact label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 14px;
  color: #000;
}

.contact label:hover {
  background: #f5f5f5;
}

.contact input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #000;
  cursor: pointer;
}

.contact .btn-primary--second {
  background: linear-gradient(90deg, #2D69FB 0%, #D278FE 100%);
  color: #fff;
  padding: 16px clamp(60px, 12vw, 130px);
  font-size: clamp(18px, 1.5vw, 20px);
  border-radius: 60px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 32px;
  line-height: 1.2;
  transition: all 0.3s ease;
  font-family: "Raleway";
}

.contact .btn-primary--second:hover {
  background: transparent;
  border: 1px solid #000;
  color: #000;
}

/* === intlTelInput (телефон с флагами) === */
.iti {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #0E0D16;
}

.iti__flag-container {
  position: absolute;
  top: 0 !important;
  left: 0;
}

.iti__arrow {
  margin: 5px 0 0 -60px;
}

.iti__flag.iti__md {
  margin: 5px 0 0 -8px;
}

.iti__country-list {
  left: 49% !important;
  right: auto !important;
  top: 30%;
  width: max-content;
  min-width: 200px;
  z-index: 9999;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: fixed;
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin: 15px 0 10px 30px;
  font-size: clamp(16px, 1vw, 18px);
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: #fff !important;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type="text"],
.iti--allow-dropdown input[type="tel"], .iti--separate-dial-code input,
.iti--separate-dial-code input[type="text"],
.iti--separate-dial-code input[type="tel"] {
  border: none;
  padding-left: 90px !important;
  font-size: 20px;
}

.iti-mobile .iti__country-list {
  max-height: 15%;
  width: 15%;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 20px;
  right: 42px;
  position: fixed;
}

.footer {
  background: #0E0D16;
  color: #fff;
  padding: 150px 100px 70px;
  text-align: center;
  overflow: hidden;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -100px;
}

.footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: clamp(16px, 1vw, 18px);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
  z-index: 2;
  line-height: 1.2;
  font-weight: 600;
}

.footer__nav a:hover {
  opacity: 0.6;
}

.footer__image {
  max-height: 40px;
}

.footer__center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__year {
  font-size: clamp(400px, 37vw, 530px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  z-index: 0;
  font-family: Manrope;
}

.footer__content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -30%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.footer__brand {
  font-size: clamp(60px, 7vw, 100px);
  font-weight: 700;
  letter-spacing: clamp(61px, 5vw, 70px);
  background: #0E0D16;
  padding: 20px;
  white-space: nowrap;
  line-height: 1;
  margin: -80px 0 0 80px;
  font-family: Raleway;
}

.footer__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background: #0E0D16;
}

.footer__btn, .footer__btn--second {
  border: 2px solid transparent;
  border-radius: 16px;
  background: linear-gradient(#0E0D16, #0E0D16) padding-box, linear-gradient(90deg, #D278FE, #F66979) border-box;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  flex-direction: column;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.footer__btn img, .footer__btn--second img {
  width: 48px;
  height: 48px;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 6px;
  object-fit: none;
  background: linear-gradient(#0E0D16, #0E0D16) padding-box, linear-gradient(90deg, #D278FE, #F66979) border-box;
}

.footer__btn:hover, .footer__btn--second:hover {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #D278FE, #F66979) border-box;
  color: #0E0D16;
}

.footer__btn:hover img, .footer__btn--second:hover img {
  background: linear-gradient(90deg, #D278FE, #F66979) padding-box, linear-gradient(90deg, #D278FE, #F66979) border-box;
}

.footer__btn {
  padding: 60px 205px;
}

.footer__btn--second {
  padding: 60px clamp(90px, 15vw, 210px);
}

.footer__bottom {
  font-size: clamp(16px, 1.5vw, 18px);
  color: #606060;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.2;
  margin-top: 0;
  width: 100%;
}

.footer__bottom h1, .footer__bottom h2 {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  margin: 0;
  font-family: Raleway;
  line-height: 1.2;
  color: #A2A2A2 !important;
}
.hero__info--mob{
      display: flex;
    gap: 10px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: #e1e1e1;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6a5af9, #b275f5);
  transition: width 1.8s ease;
}
@media (max-width: 1200px) {
  .header__inner {
    padding: clamp(5px, 1vw, 10px) clamp(10px, 1.4vw, 16px);
  }
  .container {
    padding-inline: clamp(40px, 5vw, 60px);
  }
  .hero__ceo img {
    width: clamp(160px, 15vw, 180px);
    height: clamp(190px, 20vw, 235px);
    border-radius: 16px;
    object-fit: cover;
}
.hero__img {
    border-radius: 16px;
    flex-shrink: 0;
    height: clamp(240px, 29vw, 340px);
    width: clamp(140px, 20vw, 240px);
}
.hero__ceo-name {
    font-weight: 700;
    font-size: clamp(12px, 1.7vw, 20px);
    line-height: 1.1;
    color: #F0F0F0;
}
.hero__title {
    font-size: clamp(12px, 4vw, 48px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: clamp(12px, 3.5vw, 40px);
    letter-spacing: -0.96px;
}
.hero__subtitle {
    font-size: clamp(12px, 1.5vw, 16px);
    max-width: clamp(320px, 43vw, 510px);
}
.hero .btn--primary, .contact .btn-primary--second {
    font-size: clamp(16px, 1.7vw, 20px);
}
.hero__note {
    font-size: clamp(14px, 1.4vw, 16px);
    max-width: clamp(280px, 28vw, 330px);
}
.header__nav a, .stats__label, .works__item p{
    font-size: clamp(10px, 1.4vw, 16px);

}
.header__nav {
    display: flex;
    gap: clamp(10px, 2vw, 24px);
}

    .header .btn--header {
        padding: clamp(10px, 1.4vw, 16px) clamp(12px, 3.3vw, 40px);
        font-size: clamp(10px, 1.4vw, 16px);
    }
.hero {
    padding: clamp(32px, 3vw, 40px) 0 clamp(160px, 17vw, 200px);
}
.stats__title, .confidence__title, .works__title, .works__item h3, .pricing__title, .pricing__price,.faq__label, .contact__title{
  font-size: clamp(12px, 3.5vw, 40px);
}
.stats__item {
    padding: clamp(15px, 1.7vw, 20px);
    gap: clamp(8px, 1.7vw, 20px);
}
.btn--secondary {
    padding: clamp(15px, 1.7vw, 20px) clamp(60px, 7vw, 84px);
    font-size: clamp(12px, 1.7vw, 20px);
}
.stats {
    padding: 0 0 clamp(60px, 18vw, 200px);
}
.ci-col {
    flex: 0 0 clamp(150px, 23vw, 275px);
    height: 300px;

}
.ci-title{
  font-size: clamp(12px, 2.3vw, 27px);
}
.confidence__note, .services .btn--cta, .btn--price {
    font-size: clamp(16px, 1.7vw, 20px);
}
.ci-text {
    font-size: clamp(8px, 1.2vw, 14px);
}
.confidence {
    padding: 0 0 clamp(120px, 17vw, 200px);
}
.services__title {
    font-size: clamp(12px, 3.5vw, 40px);
        max-width: clamp(500px, 58vw, 700px);
    }
.services__item {
    padding: clamp(15px, 1.7vw, 20px);
    transform: scale(0.95);
}
.services__track {
    gap: 0;
}
.services__arrow{
  display: none;
}
.services__cta {
    padding: clamp(10px, 1.7vw, 20px) clamp(20px, 3vw, 60px);
    gap: clamp(12px, 1.3vw, 15px);
}
.services {
    padding: 0 0 clamp(80px, 13vw, 150px);
}
.works {
    padding: clamp(80px, 9vw, 100px) 0;
}
.works__filters {
    gap: 8px;
    margin-bottom: clamp(15px, 3vw, 32px);
}
.works__logo--second {
    width: 64px;
    height: auto;
    margin-bottom: 50px;
}
.pricing__subtitle {
font-size: clamp(12px, 1.5vw, 18px);
margin-bottom: clamp(15px, 3vw, 32px);
}
.pricing__card {
        flex: 0 0 clamp(300px, 37vw, 440px);
    }
    .pricing__badge, .faq__item.active .faq__answer {
font-size: clamp(10px, 1.2vw, 14px);
}
.pricing__price .month, .pricing__card ul li, .pricing__note, .faq__btn, .contact__form input, .contact .dropdown-label{
  font-size: clamp(10px, 1.4vw, 16px);
}
.pricing__card h4, .faq__question {
    font-size: clamp(15px, 3vw, 32px);
}
.faq__title h2, .contact__subtitle,.footer__nav a, .footer__btn, .footer__btn--second {
  font-size: clamp(10px, 1.5vw, 18px);
}
.footer__year {
    font-size: clamp(300px, 38vw, 460px);
    font-weight: 800;
}
.footer__brand {
font-size: clamp(50px, 7vw, 87px);
        letter-spacing: clamp(40px, 5vw, 60px);
}
.footer__bottom{
      margin-top: 32px;
        font-size: clamp(10px, 1.5vw, 18px);
}
    .footer__btn {
        padding: clamp(50px, 7vw, 60px) clamp(50px, 17vw, 200px);
    }
}

@media (max-width: 780px) {
.header__nav{
  display: NONE;
}
.container {
padding-inline: clamp(10px, 2.6vw, 20px);
    }
 .header__logo img {
    content: url("../img/1234.svg");
  }
.header__inner{
  background: none;
  padding: 0;
}
    .header .btn--header {
        display: none;
    }
  .header__burger {
    display: block;
  }
  .header {
    padding: 40px 0;
}
/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 9999;
    display: block;

}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}


/* ВНУТРИ — панель справа */
.mobile-menu__inner {
  width: 460px;
  max-width: 100%;
  height: auto;
  background: #0E0D16;
  padding: 30px 16px;
  position: absolute;
  top: 0;
  right: 0;

  transform: translateX(30%);   /* СТОЯЛО 100% → рывок */
  opacity: 0;

  transition: transform .45s cubic-bezier(0.25, 0.8, 0.25, 1),
              opacity .45s ease;
}

/* Активное состояние */
.mobile-menu.active .mobile-menu__inner {
  transform: translateX(0);
  opacity: 1;
}

/* HEADER */
.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu__nav {
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

.mobile-menu__nav a {
  color: #F0F0F0;
font-variant-numeric: lining-nums proportional-nums;
font-family: Raleway;
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 120%; /* 38.4px */
letter-spacing: -0.64px;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu__btn {
        margin-top: 50px;
        display: block;
        background: #2D69FB;
        color: #fff;
        text-align: center;
        padding: clamp(10px,3vw,24px);
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        font-size: clamp(16px,3vw,24px);
    }
    .mobile-menu__top img {
        width: clamp(70px, 14vw, 109px);
        height: clamp(28px, 5vw, 38px);
    }
.hero {
   padding: clamp(32px, 5vw, 40px) 0 clamp(100px, 18vw, 140px);
}
.hero__title {
        font-size: clamp(16px, 4vw, 29px);
        line-height: 1.1;
        margin-bottom: clamp(12px, 4.1vw, 32px);
        letter-spacing: -0.96px;
    }
.hero__subtitle {
        font-size: clamp(16px, 2.5vw, 18px);
        max-width: clamp(299px, 46vw, 360px);
    }
.hero__sect {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: column;
}
.hero .btn--primary {
    padding: clamp(16px, 1.8vw, 20px) 0;
    font-size: clamp(16px, 2.6vw, 20px);
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.hero__note {
        font-size: 16px;
        max-width: none;
    }
.hero__inner {
    align-items: flex-start;
}
.hero__img {
        border-radius: 16px;
        flex-shrink: 0;
        height: clamp(240px, 37vw, 290px);
        width: clamp(140px, 22vw, 170px);
    }
.hero__ceo-info {
    padding: 16px 0;
    height: clamp(70px, 11vw, 85px);
    gap: 8px;
}
.hero__ceo-name {
        font-size: clamp(16px, 2.6vw, 20px);
    }
  .hero__ceo-position {
    font-size: clamp(16px, 2.4vw, 18px);
}
.hero__ceo img {
        width: clamp(150px, 22vw, 170px);
        height: clamp(150px, 25vw, 190px);
    }
.stats__title {
    margin: 0 auto clamp(20px, 4vw, 32px);
    max-width: none;
}
.stats__title,.confidence__title,.services__title{
      font-size: clamp(16px, 3.5vw, 26px);
}
.stats__item {
        padding: clamp(15px, 2.7vw, 20px);
        gap: clamp(8px, 2.7vw, 20px);
        justify-content: unset;
    }
    .stats__number {
    font-size: clamp(25px, 4.1vw, 32px);
}
.stats__label p{
          font-size: 18px;
}
.stats__desc,.services__item p{
          font-size: 16px;
}
.btn--secondary{
  padding: clamp(15px, 2.7vw, 20px) clamp(20px, 5vw, 35px);
  font-size: 16px;
}

.stats,.confidence {
        padding: 0 0 clamp(60px, 18vw, 140px);
    }
.pricing{
  padding: clamp(60px, 18vw, 140px) 0 clamp(60px, 18vw, 140px);
}
    .ci-col.pos-1 .ci-inner,.ci-col.pos-2 .ci-inner,.ci-col.pos-3 .ci-inner,.ci-col.pos-4 .ci-inner {
    top: 0;
    left: 20px;
}
  .ci-col:hover .ci-inner {
    top: unset !important;
  }

 
  .ci-col:hover .ci-text {
    opacity: 1;        
    max-height: none;  
  }


 .ci-col {
        flex: 0 0 clamp(150px, 43vw, 334px);
        height: 255px;
        pointer-events: none;
    }
    .ci-title {
        font-size: clamp(16px, 3.1vw, 24px);
        margin-bottom: clamp(12px, 3.1vw, 24px);
    }
    .ci-sub {
    font-size: 16px;
    max-width: 210px;
}
.ci-text {
    opacity: unset;
    max-height: 0;
    overflow: unset;
    font-size: 16px;
}
.confidence__note {
        font-size: clamp(16px, 2.7vw, 20px);
        padding: clamp(16px, 2.7vw, 20px);
    }
    .services__item {
        flex: 0 0 60%;
        padding: clamp(15px, 2.5vw, 20px);
        max-width: 370px;
        width: clamp(260px, 48vw, 370px);
        height: clamp(260px, 58vw, 450px);
    }
    .services__track {
        gap: clamp(16px, 2.7vw, 20px);
    }
    .services__content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
.services__item h3,.services__cta-title {
    font-size: clamp(20px, 4.2vw, 32px);
}
.services__cta {
        padding: clamp(16px, 2.7vw, 20px);
        gap: clamp(12px, 3.1vw, 24px);
        margin-top: clamp(16px, 4.2vw, 32px);
    }
    .services__cta-text{
      font-size: 16px;
      margin-bottom: 8px;
      width: clamp(260px, 45vw, 350px);
    }
        .services .btn--cta {
        font-size: clamp(16px, 2.6vw, 20px);
        padding: clamp(10px, 2.1vw, 16px) clamp(20px, 8.3vw, 64px);;
    }
        .services {
        padding: 0 0 clamp(50px, 9vw, 70px);
    }
    .works{
      padding: clamp(50px, 9vw, 70px) 0;
    }
    .works__title {
    font-size: clamp(16px, 3.5vw, 26px);
    margin-bottom: clamp(10px, 2.1vw, 16px);
}
.works__filters {
        gap: 4px;
        margin-bottom: clamp(15px, 4.1vw, 32px);
    }
    .works__item {
    padding: clamp(10px, 2.6vw, 20px);
}
.works__item h3{
  font-size: clamp(16px, 4.1vw, 32px);
}
 .works__item p {
        font-size: 16px;
    }
    .pricing__title {
    text-align: left;
    font-size: clamp(16px, 3.5vw, 26px);
    margin: 0 clamp(30px, 13vw, 100px) clamp(10px, 2.1vw, 16px);
}
.pricing__subtitle {
        font-size: clamp(16px, 2.4vw, 18px);
        margin: 0 clamp(28px, 4.1vw, 32px) clamp(10px, 2.1vw, 16px);
        text-align: left;
    }
.pricing__card {
        flex: 0 0 clamp(300px, 54vw, 425px);
    }
        .pricing__badge {
        font-size: 16px;
    }
    .pricing__price {
    font-size: clamp(28px, 4.1vw, 32px);
    margin-top: clamp(15px, 4.1vw, 32px);
}
    .pricing__price .month {
        font-size: 16px;
    }
    .pricing__card h4{
        font-size: clamp(16px, 3.1vw, 24px);
            margin: 32px 15px 16px;
    }
     .pricing__card ul li, .pricing__note,.faq__btn {
        font-size: 16px;
    }
    .btn--price {
        font-size: clamp(16px, 2.7vw, 20px);
    }
    .faq__label, .contact__title{
      font-size: clamp(16px, 3.5vw, 26px);
    }
    .faq__title h2{
      font-size: clamp(16px, 2.4vw, 18px);
      margin-bottom: clamp(15px, 4.1vw, 32px);
    }
      .faq__question {
        font-size: clamp(16px, 2.7vw, 20px);
    }
    .faq__item.active .faq__answer{
      font-size: 16px;
      max-width: 500px;
      margin-top: 20px;
    }
    .faq__btn-wrapper {
    margin-top: clamp(10px, 2.2vw, 16px);
}
.faq {
    padding: 0 0 70px;
}
.contact {
    padding: 70px 0;
}
.contact__subtitle{
  font-size: clamp(16px, 2.4vw, 18px);
}
    .pricing__price .month, .pricing__card ul li, .pricing__note, .faq__btn, .contact__form input, .contact .dropdown-label,.footer__nav a {
        font-size: 16px;
    }
    .contact .dropdown-list {
    top: calc(100% + 0px);
    padding: 10px;
}
.contact .btn-primary--second {
    padding: 16px 0;
    font-size: clamp(18px, 2.6vw, 20px);
}
.footer {
    padding: 100px 0 50px;
}
.footer__nav {
    gap: clamp(10px, 2.1vw, 16px);
}
    .footer__year {
        font-size: clamp(170px, 40vw, 310px);
    }
    .footer__inner {
    margin-bottom: -60px;
}
.footer__brand{
  padding: 20px;
  margin: -10px 0 0 50px;
  font-size: clamp(40px, 7.5vw, 59px);
        letter-spacing: clamp(20px, 5vw, 40px);
}
.footer__btn, .footer__btn--second {
        font-size: clamp(16px, 2.4vw, 18px);
        padding: clamp(40px, 8vw, 65px) clamp(50px, 12vw, 100px);
    }
    .footer__bottom{
              margin-top: 100px;
        font-size: clamp(16px, 2.4vw, 18px);
        justify-content: center;
    }
        .pricing__scroll {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .pricing__card {
    scroll-snap-align: center; /* ВАЖНО */
  }
}
@media (max-width: 460px) {

  .header {
        padding: 20px 0;
    }
    .container {
        padding-inline: clamp(10px, 3.5vw, 16px);
    }
        .mobile-menu__top img {
        width: clamp(70px, 22vw, 101px);
        height: clamp(28px, 9vw, 38px);
    }
    .mobile-menu__btn {
        padding: clamp(10px, 5.5vw, 24px);
        font-size: clamp(16px, 5.5vw, 24px);
    }
    .hero {
        padding: clamp(32px, 11vw, 50px) 0 clamp(100px, 30.5vw, 140px);
    }
    .hero__inner {
    gap: 32px;
    flex-direction: column;
}
.hero__title {
        font-size: clamp(16px, 7.5vw, 33px);
        margin-bottom: clamp(12px, 7vw, 32px);
    }
    .hero__subtitle {
        font-size: clamp(16px, 4vw, 18px);
        max-width: unset;
    }
    .hero .btn--primary {
        padding: clamp(16px, 4.5vw, 20px) 0;
        font-size: clamp(16px, 4.5vw, 20px);
    }
    .hero__note {
        font-size: 16px;
        max-width: none;
    }
    .hero__img {
        height: clamp(240px, 79vw, 360px);
        width: clamp(140px, 45vw, 206px);
    }
.hero__ceo img {
        width: clamp(150px, 46vw, 210px);
        height: clamp(150px, 57vw, 260px);
    }
.hero__ceo-info {
        padding: 16px 0;
        height: clamp(70px, 19vw, 85px);
        gap: 8px;
    }
.hero__visual {
    gap: clamp(10px, 4.5vw, 20px);
}
    .hero__ceo-name {
        font-size: clamp(16px, 5.5vw, 24px);
    }
    .hero__ceo-position {
        font-size: clamp(16px, 4.5vw, 20px);
    }
    .stats__title, .confidence__title, .services__title {
        font-size: clamp(16px, 6.2vw, 28px);
    }
    .stats__title {
        margin: 0 auto clamp(20px, 7vw, 32px);
        max-width: none;
    }
    .stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 1.5vw, 20px);
}
    .stats__item {
        padding: 15px 8px;
        gap: 8px;
    }
    .stats__item:nth-child(1) {
        grid-column: 1;
    }

.stats__item:nth-child(3) {
        grid-column: 1;
    }
.stats__item--wide {
    grid-column: span 2;
}
    .stats__number {
        font-size: clamp(25px, 7vw, 32px);
    }
.stats__label {
        font-size: 18px;
        margin: 0 0 20px 0;
    }
.stats__desc, .services__item p {
        font-size: 16px;
    }



.btn--secondary {
    padding: clamp(15px, 4.5vw, 20px) 0;
    font-size: clamp(16px, 4.5vw, 20px);
    width: 100%;
    border-radius: 60px;
    margin-top: clamp(25px, 7vw, 32px);
}
.stats, .confidence {
        padding: 0 0 clamp(60px, 31vw, 140px);
    }
.ci-col {
        flex: 0 0 clamp(150px, 73vw, 335px);
    }
.ci-title {
        font-size: clamp(16px, 5.3vw, 24px);
        margin-bottom: clamp(12px, 5.3vw, 24px);
    }
.ci-sub {
        font-size: 16px;
        max-width: 240px;
    }
.ci-text {
        font-size: 16px;
        max-width: 300px;
    }
    .confidence__note {
        font-size: clamp(16px, 4.5vw, 20px);
        padding: clamp(16px, 4.5vw, 20px);
        text-align: left;
    }
    .services__item {
        flex: 0 0 60%;
        padding: clamp(15px, 4.5vw, 20px);
        max-width: clamp(260px, 81vw, 370px);
        width: clamp(260px, 81vw, 370px);
        height: 450px;
    }
    .services__item h3, .services__cta-title {
        font-size: clamp(20px, 7vw, 32px);
    }
.services__tags span {
    font-size: clamp(12px, 3vw, 14px);
}
.services__item p {
    margin-bottom: clamp(20px, 12.5vw, 60px);

}
.services__item h3 {
    margin-bottom: clamp(12px, 3.5vw, 16px);
}
.services__tags {
    gap: 4px;
}
.services__track {
        gap: 0
    }
    .services__cta {
        padding: clamp(16px, 4.5vw, 20px);
        gap: clamp(12px, 5.1vw, 24px);
        margin-top: clamp(16px, 7vw, 32px);
    }
.services__cta-text {
        font-size: 16px;
        margin-bottom: 8px;
        width: clamp(260px, 76vw, 350px);
    }
    .services .btn--cta {
        font-size: clamp(16px, 4.5vw, 20px);
        padding: clamp(10px, 3.5vw, 16px) clamp(20px, 14vw, 64px);
    }
    .services {
        padding: 0 0 clamp(50px, 15vw, 70px);
    }
.works {
        padding: clamp(50px, 15vw, 70px) 0;
    }
.works__title {
        font-size: clamp(16px, 6.2vw, 28px);
        margin-bottom: clamp(10px, 4.5vw, 20px);
    }
        .works__filters {
        margin-bottom: clamp(15px, 7vw, 32px);
    }
    .works__item {
        padding: clamp(10px, 4.5vw, 20px);
    }
.works__item h3 {
        font-size: clamp(16px, 7vw, 32px);
    }
    .works__item p {
        font-size: 16px;
    }
.pricing {
        padding: clamp(60px, 30vw, 140px) 0;
    }
    .pricing__title {
        text-align: center;
        font-size: clamp(16px, 6.2vw, 28px);
        margin: 0 0 clamp(10px, 3.5vw, 16px);
    }
    .pricing__subtitle {
        font-size: clamp(16px, 4vw, 18px);
        margin: 0 0 clamp(10px, 11vw, 50px);
        text-align: center;
    }
.pricing__card {
        flex: 0 0 clamp(300px, 93vw, 430px);
    }
.pricing__badge {
        font-size: 16px;
    }
    .pricing__price {
        font-size: clamp(28px, 7vw, 32px);
        margin-top: clamp(15px, 7vw, 32px);
    }
    .pricing__price .month, .pricing__card ul li, .pricing__note, .faq__btn, .contact__form input, .contact .dropdown-label{
        font-size: 16px;
        margin-top: 10px;
    }
.pricing__card h4 {
        font-size: clamp(16px, 5.3vw, 24px);
    }
.btn--price {
        font-size: clamp(16px, 4.5vw, 20px);
    }
.pricing__track {
    gap: 16px;
}
.pricing__nav {
    margin-top: 16px;
    text-align: center;
}
.faq__label, .contact__title {
        font-size: clamp(16px, 6.2vw, 28px);
    }
    .faq__title h2 {
        font-size: clamp(16px, 4vw, 18px);
        margin-bottom: clamp(15px, 7vw, 32px);
    }
    .faq__question {
        font-size: clamp(16px, 4.5vw, 20px);
    }
        .faq__item.active .faq__answer {
        font-size: 16px;
    }
    .faq__btn-wrapper {
        margin-top: clamp(10px, 5.2vw, 24px);
    }
.contact__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact__title {
    margin-bottom: 16px;
    text-align: center;
}
.contact__subtitle {
    font-size: clamp(16px, 4vw, 18px);
    text-align: center;
}
    .contact .btn-primary--second {
        padding: 16px 0;
        font-size: clamp(18px, 4.5vw, 20px);
    }
    .footer {
        padding: 70px 0 50px;
    }
.footer__nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.footer__inner {
        margin-bottom: 0px;
        align-items: flex-start;
    }
.footer__nav a {
  font-size: clamp(16px, 4.5vw, 20px);
}
    .footer__year {
        font-size: clamp(100px, 39vw, 180px);
    }
    .footer__brand {
        padding: 20px;
        margin: 30px 0 0 28px;
        font-size: clamp(20px, 7vw, 32px);
        letter-spacing: clamp(10px, 4.5vw, 22px);
    }
    .footer__content {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -30%);
    display: flex;
    align-items: center;
    z-index: 1;
    flex-direction: column;
}

.footer__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
    background: #0E0D16;
    flex-direction: column;
}
.footer__bottom {
        margin-top: 310px;
        font-size: 16px;
        justify-content: center;
    }
    .footer__btn {
        font-size: clamp(16px, 4.5vw, 20px);
        padding: clamp(30px, 9vw, 40px) clamp(50px, 25vw, 110px);
    }
    .footer__btn--second {
        font-size: clamp(16px, 4.5vw, 20px);
        padding: clamp(30px, 9vw, 40px) clamp(50px, 27vw, 123px);
    }
.footer__bottom h1, .footer__bottom h2 {
  font-size: 14px;
  
}
}