@font-face {
  font-family: "Grifter Bold";
  src: url("fonts/grifterbold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #0E1A09; /* фон как на скрине */
  color: #fff;
    overflow-x: hidden;
}

.container {
  max-width: 1440px;  /* фиксированная ширина макета */
  margin: 0 auto;     /* центрируем */
  padding: 0 140px;   /* боковые отступы */
  box-sizing: border-box;

}

/* Шапка */
.header {
  padding: 15px;
  top: 0%;
  left: 0%;
  width: 100%;
  z-index: 1000;
  background: #0E1A09;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: bold;
  color: #adff2f; /* салатовый как на кнопке */
  text-decoration: none;
}

.logo span {
  color: #fff;
  font-weight: normal;
  margin-left: 4px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: clamp(15px, 2.8vw, 40px);
}

.nav a {
  color: #F8F8F8;
  text-decoration: none;
  font-size: clamp(14px, 1.2vw, 18px);
  transition: 0.2s;
}

.nav a:hover {
  color: #adff2f;
}

.btn {
  background: #dfff00;
  color: #000;
  padding: clamp(10px, 1.4vw, 20px);
  border-radius: clamp(4px, 0.6vw, 6px);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  text-transform: uppercase;
    font-size: clamp(12px, 1vw, 16px);

}

.btn:hover {
  background: #c6eb00;
}


/* Hero */
.hero {
  position: relative;
  height: clamp(450px, 50vw, 680px);
  background: url("img/frame1.png") no-repeat center top / cover;
  display: flex;
  align-items: flex-start;
  color: #fff;
  z-index: 1;
}
.hero__content {
  padding-top: 75px; /* отступ сверху до текста */
  max-width: 700px;  /* ширина текста как в макете */
}

.hero__subtitle {
  font-size: clamp(14px, 1.5vw, 20px);
  text-transform: uppercase;
  margin-bottom: clamp(15px, 2.5vw, 30px);
  font-weight: 600;
    font-family: "Grifter Bold", Arial, sans-serif;

}

.hero__title {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  margin-bottom: clamp(15px, 3vw, 30px);
}

.hero__title span {
  color: #dfff00; /* ярко-салатовый акцент */
}

.hero__text {
  font-size: clamp(14px, 1.6vw, 20px);
  margin-bottom: clamp(20px, 3.5vw, 45px);
  width: 65%;
  line-height: 1.2;
  font-weight: 500;
}
.hero__inner{
max-width: 1440px;  /* фиксированная ширина макета */
  margin: 0 auto;     /* центрируем */
  padding: 0 140px;   /* боковые отступы */
  box-sizing: border-box;
}
.hero__btn {
  display: inline-block;
  background: #dfff00;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  padding: clamp(12px, 1.8vw, 25px) clamp(40px, 14vw, 115px);
  border-radius: clamp(4px, 0.6vw, 8px);
  font-size: clamp(14px, 1.8vw, 20px);
}

.hero__btn:hover {
  background: #c6eb00;
}

.hero__note {
  font-size: clamp(12px, 1.2vw, 16px);
  margin-top: clamp(6px, 1vw, 10px);
  color: #F8F8F8;
}

.cards {
  margin-top: clamp(20px, 5vw, 50px);
  position: relative;
  z-index: 5;
  
  
}



.cards-swiper {
  overflow: visible;
  padding-bottom: clamp(10px, 2vw, 20px);

}

.card {
  width: clamp(250px, 26vw, 373px) !important;
  height: clamp(140px, 14vw, 163px);
  border-radius: clamp(6px, 0.8vw, 8px);
  flex-shrink: 0;
   background: linear-gradient(180deg, #0E1A09 0%, #081005 100%);
 
  padding: clamp(15px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 clamp(6px, 0.8vw, 10px) clamp(14px, 1.5vw, 20px) rgba(0, 0, 0, 0.4);

  
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(150deg, #E2FF00, #787664);
  
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
    z-index: 2; 

}

.card__title {
  font-size: clamp(20px, 2.5vw, 35px);
  font-weight: 700;
}

.card__from {
  font-size: clamp(12px, 1.5vw, 18px);
  color: #787664;
  font-weight: 700;
}

.card__bottom {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
}

.card__price {
  font-size: clamp(20px, 2.5vw, 35px);
  font-weight: 700;
  color: #E2FF00;
}

.card__note {
  font-size: clamp(12px, 1.5vw, 18px);
  color: #fff;
  background: #787664;
  border-radius: clamp(4px, 10vw, 100px);
  padding: clamp(2px, 0.3vw, 4px) clamp(6px, 0.8vw, 8px);
  font-weight: 700;
}

/* Точки-пагинация */
/* точки у карточек */
.cards-pagination .swiper-pagination-bullet {
  background: #666;
}
.cards-pagination .swiper-pagination-bullet-active {
  background: #E2FF00;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;       /* стандартно снизу */
    left: 0;
    width: 100%;     /* пусть занимает всю ширину */
    display: flex;
    justify-content: left; /* выравнивание по центру */
    gap: 5px;        /* расстояние между точками */
}

.solutions {
  padding: clamp(80px, 30vw, 325px) 0 clamp(40px, 6vw, 90px);
}

.solutions__title {
  text-align: center;
  font-size: clamp(14px, 1.5vw, 20px);
  text-transform: uppercase;
  margin-bottom: clamp(10px, 1.5vw, 20px);
  color: #ccc;
    font-family: "Grifter Bold", Arial, sans-serif;
            font-weight: 700;

}

.solutions__title__span{
  font-size: clamp(20px, 3vw, 40px);
  color: #E2FF00;
  text-align: center;
  font-weight: 800;
  margin: 0 auto;
  width: 55%;
  margin-bottom: clamp(15px, 2.5vw, 30px);



}

.solutions__subtitle {
  text-align: center;
  font-size: clamp(14px, 1.5vw, 20px);
  color: #fff;
  margin: 0 auto clamp(30px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.2;
  width: clamp(60%, 45%, 80%);
}

/* Верхний ряд */
.solutions__grid-top {
  display: grid;
 grid-template-columns: clamp(200px, 29vw, 373px) clamp(612px, 55vw, 767px);
  gap: clamp(10px, 1.5vw, 20px);
  margin-bottom: clamp(15px, 2.5vw, 20px);
}



.solutions__grid-top .solutions__item {
  height: clamp(260px, 40vw, 450px);
}

/* Нижний ряд */
.solutions__grid-bottom {
  display: grid;
  grid-template-columns: clamp(400px, 46vw, 651px) clamp(300px, 40vw, 490px);
  gap: clamp(15px, 2vw, 20px);
}

.solutions__col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solutions__item {
  position: relative;
   border-radius: clamp(6px, 0.8vw, 8px);
  padding: clamp(20px, 5vw, 50px);
  color: #fff;
  overflow: hidden;
    background: linear-gradient(180deg, #0E1A09 0%, #081005 100%);

}

.solutions__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(150deg, #E2FF00, #787664);
  
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
    z-index: 2; 

}

.solutions__item--small{
  display: flex;
  height: clamp(120px, 20vw, 205px);
  align-items: flex-start; /* иконка и текст выровнены по верхней линии */
  gap: clamp(20px, 4vw, 55px);
  padding: clamp(20px, 5vw, 50px);
  border-radius: 8px;
  background: linear-gradient(180deg, #1a1f0d, #0d0f07);
}

.solutions__item--small--second {
  display: flex;
  height: clamp(120px, 20vw, 205px);
  align-items: flex-start; /* иконка и текст выровнены по верхней линии */
  gap: clamp(20px, 5vw, 67px);
  padding: clamp(20px, 5vw, 50px);
  border-radius: 8px;
  background: linear-gradient(180deg, #1a1f0d, #0d0f07);
}

 

.solutions__text {
  display: flex;
  flex-direction: column; /* заголовок над текстом */
  gap: clamp(10px, 2vw, 20px);
}

.solutions__text h3 {
  margin: 0;
  color: #E2FF00;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 800;
  text-align: left;
}

.solutions__col-left p {
  margin: 0;
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1.2;
  color: #fff;
  text-align: left;
}
.solutions__item--middle {
  height: clamp(260px, 41vw, 430px);
}



/* Иконки */
.solutions__icon__one{
  position: relative;
  width: clamp(60px, 10vw, 127px);
  height: clamp(60px, 10vw, 118px);
  margin-bottom: clamp(20px, 4vw, 50px);
  left: 27%;
}

.solutions__icon {
  width: clamp(60px, 7vw, 90px);
  height: clamp(60px, 7vw, 90px);
    position: relative;

}

/* Фото */
.solutions__img {
  position: absolute;
  bottom: 1px;
  right: clamp(40px, 3vw, 50px);
  max-width: 100%;
  height: clamp(120px, 17vw, 237px);
  width: clamp(400px, 48vw, 667px);
  z-index: 0;
}
.solutions__img--bottom{
  position: absolute;
  bottom: 30px;
  right: 50px;
  max-width: 100%;
  height: clamp(100px, 12vw, 160px);
  width: clamp(250px, 31vw, 390px);
  z-index: 0;
}

.solutions__desc {
    position: relative;
    z-index: 1;
    width: 92%;
    text-align: center;
    margin: 20px auto;
    line-height: 1.2;
font-size: clamp(14px, 1vw, 16px);
}

.solutions__item--tms p{

    text-align: left;
    margin: 20px 0 40px;
  line-height: 1.2;}


.solutions__grid-top .solutions__item h3{
  color: #E2FF00;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.solutions__grid-top >.solutions__item:last-child h3 {

  text-align: left;
}
.solutions__item.solutions__item--middle h3 {
  color: #E2FF00;
  font-size: 20px;
  font-weight: 800;
  text-align: left;
    margin-bottom: 20px;

}

.solutions__item.solutions__item--middle p {
  font-size: 16px;
  text-align: left;
  margin-bottom: 30px;
  line-height: 1.2;

}


.form {
  text-align: left;
  margin-bottom: clamp(80px, 15vw, 200px);
}

.form h2 {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  margin-bottom: clamp(30px, 5vw, 65px);
  line-height: 1.2;
}

.form__phone {
  color: #E2FF00;
}

.form__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.5vw, 20px);
}

.form__grid input,
.form__grid select {
  padding: clamp(15px, 2vw, 25px);
  border: 1px solid #787664; /* по умолчанию */
  border-radius: clamp(4px, 0.6vw, 6px);
  background: transparent;
  color: #fff;
  font-size: clamp(14px, 1.5vw, 16px);
  transition: border-color 0.3s; /* плавный переход */
}
.form__grid input:focus,
.form__grid select:focus,
.form__grid input:hover,
.form__grid select:hover {
  border-color: #E2FF00; /* при наведении/фокусе */
  outline: none; /* убираем синий outline */
}
.form__grid option {
  background: #0c1400;
  color: #fff;
}
.form__field {
  position: relative;
  display: inline-block;
  width: 100%;
}
.custom-select__option {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #0c1400;
  border: 1px solid #E2FF00;
  border-radius: 6px;
  z-index: 999;
}

.custom-select.open .custom-select__option {
  display: block;
}


.form__field label {
  position: absolute;
  top: -10px;  /* "сидит" на бордере */
  left: 15px;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  color: #F8F8F8;
  background: #0c1400; /* чтобы текст не налезал на бордер */
  padding: 0 5px;
  pointer-events: none;
}

.form__field select {
  width: 100%;
  padding: 25px;
  padding-right: 40px; /* место для стрелки */
  border: 1px solid #787664;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: clamp(14px, 1vw, 16px);
  appearance: none; /* убираем дефолтную стрелку */
  transition: border-color 0.3s;
  font-family: 'Montserrat';
}

.form__field select:focus {
  border-color: #E2FF00;
  outline: none;
}

/* Кастомная стрелка */
.form__arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: clamp(4px, 0.6vw, 6px) solid transparent;
  border-right: clamp(4px, 0.6vw, 6px) solid transparent;
  border-top: clamp(4px, 0.6vw, 6px) solid #E2FF00;
  pointer-events: none;
  transition: transform 0.3s;
}

/* Когда select активен — стрелка вверх */
.form__field select:focus + .form__arrow {
  transform: translateY(-50%) rotate(180deg);
}
/* низ формы */
.form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 20px);
}
.form__row {
  display: flex;
  align-items: end; /* все выровнены по высоте */
  gap: 20px; /* отступы между кнопкой и блоками */
}
/* кнопка */
.btn--big {
  flex: 0 0 50%;
  padding: clamp(15px, 2vw, 25px) clamp(40px, 6vw, 95px);
  background: #E2FF00;
  color: #000;
  font-weight: bold;
  font-size: clamp(14px, 1.8vw, 20px);
  border-radius: clamp(4px, 0.6vw, 6px);
  transition: 0.3s;
  text-align: center;
  white-space: nowrap; /* чтобы текст не переносился */
  font-family: 'Montserrat';
}

.btn--big:hover {
  background: #c6eb00;
}

/* блоки со статистикой */
.form__stats {
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 2vw, 20px);
  margin-top: clamp(40px, 8vw, 105px);
}

.form__stat {
  position: relative; /* важно для абсолютного ::before */
  border-radius: clamp(4px, 0.6vw, 8px);
  padding: clamp(15px, 2vw, 25px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
    background: linear-gradient(180deg, #0E1A09 0%, #081005 100%);

  z-index: 0; /* чтобы текст был выше */
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
    height: 130px;

}

.form__stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(150deg, #E2FF00, #787664);
  
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
    z-index: 2; 

}

.form__stat span {
  font-size: clamp(20px, 3vw, 35px);
  font-weight: 800;
  color: #E2FF00;
  display: block;
  margin-bottom: clamp(5px, 1vw, 10px);
  text-align: left;
}

.form__stat p {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 18px);
  color: #fff;
  text-align: left;
    font-weight: 700;

}

.form__stat small{
  margin: 0;
  font-size: clamp(11px, 1.2vw, 13px);
  color: #787664;
  text-align: left;
    font-weight: 400;

}

.benefits {
  display: grid;
  grid-template-columns: 1fr 3fr; /* слева текст, справа карточки */
  gap: 20px;
  align-items: start;
}

.benefits__sidebar {
  position: relative;
  z-index: 2; /* всегда выше анимации карточек */
}

.benefits__subtitle {
  font-size: clamp(14px, 1.5vw, 20px);
  text-transform: uppercase;
  margin-bottom: clamp(10px, 2vw, 20px);
  color: #fff;
      font-family: "Grifter Bold", Arial, sans-serif;
}

.benefits__title {
  font-size: clamp(16px,1vw, 25px);
  font-weight: 900;
  color: #E2FF00;
  margin-bottom: clamp(20px, 4vw, 50px);
  width: 100%;
}

.benefits__text {
  font-size: clamp(14px, 1vw, 16px);
  color: #ccc;
  margin-bottom: clamp(20px, 5vw, 60px);
  line-height: 1.2;
  position: relative;
  z-index: 3; /* поверх анимации */

}

.btn--small {
  display: inline-block;
  background: #E2FF00;
  color: #000;
  font-weight: bold;
  font-size: clamp(14px, 1vw, 20px);
  padding: clamp(20px, 1vw, 25px);
  border-radius: clamp(4px, 0.6vw, 6px);
  transition: 0.3s;
  text-decoration: none;
  position: relative;
  z-index: 3; /* фиксируем над карточками */
}

.btn--small:hover {
  background: #c6eb00;
}

/* сетка карточек */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefits__card {
  position: relative;
  border-radius: clamp(4px, 0.6vw, 8px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  height: clamp(280px, 40vw, 480px);
  display: flex;
  align-items: flex-end;
  transition: transform 0.6s ease;
  cursor: pointer;
  width: clamp(160px,15vw,175px); /* по умолчанию узкая */

}
.benefits__card:hover {
  transform: scale(1.05); /* анимация только карточки */
}
.benefits__card.active {
  width: clamp(180px, 20vw, 265px);
}

/* Заголовок всегда виден */
.benefits__overlay h3 {
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 800;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}

/* Текст и тег по умолчанию скрыты */
.benefits__overlay .benefits__tag,
.benefits__overlay p {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Для активной карточки показываем */
.benefits__card.active .benefits__overlay .benefits__tag,
.benefits__card.active .benefits__overlay p {
  opacity: 1;
  height: auto;
}
.benefits__card.active .benefits__overlay {
  height: 55%; /* раскрывает полностью */
}

/* фоновые изображения */
.benefits__card--1 { background-image: url("img/d1.png"); }
.benefits__card--2 { background-image: url("img/d2.png"); }
.benefits__card--3 { background-image: url("img/d3.png"); }
.benefits__card--4 { background-image: url("img/d4.png"); }

.benefits__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(60px, 8vw, 100px);
  padding: clamp(15px, 2vw, 30px);
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
  color: #fff;
  box-sizing: border-box;
  transition: height 0.4s ease;
}


.benefits__overlay .benefits__tag {
  font-size: clamp(10px, 1vw, 13px);
  color: #E2FF00;
  margin-bottom: clamp(10px, 2vw, 20px);
  display: inline-block;
}

.benefits__overlay p {
  font-size: clamp(10px, 1vw, 14px);
  color: #ccc;
  margin: 0;
}

.reviews {
  margin: clamp(80px, 15vw, 200px) auto;
  text-align: center;
}

.reviews__title {
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 900;
  width: 40%;
  color: #E2FF00;
  margin-bottom: clamp(30px, 6vw, 60px);
  text-align: left;
}

.reviews__title span {
  margin-bottom: clamp(10px, 2vw, 20px);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: #fff;
font-family: "Grifter Bold", Arial, sans-serif;}

.review {
  border-radius: clamp(4px, 0.6vw, 8px);
  padding: clamp(15px, 3vw, 30px);
  background: linear-gradient(180deg, #0E1A09 0%, #081005 100%);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  height: clamp(180px, 25vw, 180px);
  display: flex;       
  flex-direction: column;
  justify-content: space-between; /* текст сверху, автор внизу */
}

.review::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(150deg, #E2FF00, #787664);
  
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
    z-index: 2; 

}

.review__text {
  font-size: clamp(12px, 1.5vw, 16px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: clamp(10px, 2vw, 20px);
}

.review__author {
  font-size: clamp(12px, 1.5vw, 20px);
  font-weight: 700;
  color: #E2FF00;
  text-align: right;
}

.reviews__btn {
  padding: clamp(15px, 2vw, 25px);
  margin-top: clamp(10px, 2vw, 20px);
  display: inline-block;
}
/* Обертка для кнопки справа */
.reviews__btn-wrapper {
  text-align: right;
}
/* точки у отзывов */
.reviews-pagination .swiper-pagination-bullet {
  background: #999;
}
.reviews-pagination .swiper-pagination-bullet-active {
  background: #E2FF00;
}

.reviews-pagination {
  margin-top: 20px;   /* отступ от карточек */
  display: flex;
  justify-content: center; /* выравнивание по центру */
  gap: 8px;
    position: relative; 

}

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(40px, 10vw, 90px);
}

.faq__title {
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 900;
  color: #E2FF00;
  text-align: center;
  margin-bottom: clamp(20px, 6vw, 60px);
  width: clamp(60%, 50%, 100%);
}

.faq__title span {
  font-size: clamp(12px, 2vw, 20px);
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: clamp(-40px, -4vw, -40px);
  font-family: "Grifter Bold", Arial, sans-serif;
}

.faq__content {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Левая колонка */
.faq__accordion {
  width: clamp(280px, 39vw, 570px);
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1vw, 8px);
}

.faq__item {
  border: 1px solid #787664;
  border-radius: 6px;
  background: linear-gradient(180deg, #1a1f0d, #0d0f07);
  overflow: hidden;
  transition: border-color 0.3s;
}

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

.faq__question {
  width: 100%;
  padding: clamp(15px, 2vw, 25px) clamp(15px, 5vw, 25px);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500;
  color: #fff;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
}

/* Иконка */
/* По умолчанию плюс */
.faq__plus::before {
  content: "+"; 
  font-size: clamp(30px, 2vw, 35px);
  color: #F8F8F8;
  transition: transform 0.3s, color 0.3s;
  display: inline-block;
}

/* Когда открыто — крестик */
.faq__item.active .faq__plus::before {
  content: "×"; 
  color: #E2FF00;       /* жёлтый как акцент */
  transform: rotate(180deg);
}

/* Ответ */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 clamp(10px, 2vw, 20px);
  font-size: clamp(13px, 1vw, 15px);
  color: #CBCBCB;
  line-height: 1.2;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 500px; /* или auto через JS */
  padding: 0 25px 25px; /* верх, горизонт, низ */
}

a[href^="tel"] {
  color: #E2FF00 !important;
  font-weight: 800;
  text-decoration: none;
}
/* Правая колонка */
.faq__contact {
  width: clamp(300px, 50vw, 570px);
  height: clamp(200px, 35vw, 450px);
  padding: clamp(15px, 2vw, 30px);
  border-radius: clamp(4px, 0.6vw, 8px);
  background: linear-gradient(180deg, #0E1A09 0%, #081005 100%);

  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);  flex-shrink: 0;
  align-self: flex-start;
    position: relative;   /* ✅ обязательно */

}


.faq__contact::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(150deg, #E2FF00, #787664);
  
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
    z-index: 2; 

}

.faq__subtitle {
  font-size: clamp(18px, 1vw, 20px);
  color: #fff;
    text-align: center;
font-weight: 800;
margin-bottom: 20px;

}

.faq__email {
  font-size: clamp(14px, 2vw, 20px);
  color: #E2FF00;
  margin-bottom: clamp(20px, 3vw, 30px);
    text-align: center;
    font-weight: 500;

}

.faq__buttons {
  display: flex;
  justify-content: center;   /* центруем */
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
  margin-bottom: clamp(15px, 1vw, 50px);
}

.faq__btn {
  
  display: inline-flex;        /* ✅ не занимает всю строку, только контент */
  align-items: center;
  justify-content: center;
  gap: 10px;                   /* расстояние между иконкой и текстом */
  border: 1px solid #787664;
  border-radius: clamp(4px, 0.6vw, 6px);
  padding: clamp(10px, 1vw, 20px);
  color: #fff;
  text-decoration: none;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;         /* чтобы текст не переносился */
  /* фон внутри кнопки */
  background: linear-gradient(180deg, #12220B 0%, #0d0f07 100%);
  line-height: 1.2;
}


.faq__btn:hover {
  border-color: #E2FF00;
  background: linear-gradient(180deg, #1a1f0d 0%, #000 100%);
}

.faq__phone {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.faq__phone span {
  color: #E2FF00;
  font-size: 20px;
  font-weight: 800;
    text-align: center;

}

.faq__btn img {
  width: clamp(14px, 2vw, 20px);
  width: clamp(14px, 2vw, 20px);
}

.faq__icon{
  display: block; 
  margin: 0 auto clamp(20px, 5vw, 40px) auto;
  width: clamp(40px, 8vw, 100px);
  height: auto;
}

.footer {
  background: #060A04; /* почти чёрный фон */
  padding: clamp(20px, 4vw, 45px) 0;
  text-align: center;
}

.footer p {
  font-size: clamp(14px, 1vw, 16px);
  color: #868889;
  line-height: 1.2;
}

.burger {display: none;}
.cards-slider{display: none;}
.form__grid--mobile {
  display: none;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 1200px) {
.container{
  padding: 0 50px
}
.hero__inner{
  padding: 0 50px;
}
}
@media (max-width: 480px) {
.container {
    max-width: 100%;
    padding: 0 16px;
  }
.form__grid select{
    display: none;}
    .form__grid{
    display: none;}
  
  .cards{display: none;}
  .btn{    display: none; /* скрыто по умолчанию */
}

.nav a {
    color: #F8F8F8;
    text-decoration: none;
    font-size: clamp(10px, 3vw, 14px);
    transition: 0.2s;
}
  .nav {
    display: none; /* скрыто по умолчанию */
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 60px; /* под шапкой */
    right: 0;
    left: 0;
    background: #0E1A09;
    padding: 24px;
    z-index: 1000;
  }
  
  .nav.active {
    display: flex; /* показываем при клике */
  }
  

.header {
    padding-block: clamp(8px, 5vw, 20px); /* вертикальные отступы */
  }

  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: clamp(16px, 6vw, 24px); /* отступы по бокам */
  }

  .logo {
    max-width: clamp(80px, 25vw, 110px); /* плавное сжатие логотипа */
    height: auto;
  }

  .burger {
    display: block;
    width: 28px;
    cursor: pointer;
  }

  .burger span {
    display: block;
    height: 3px;
    margin: 5px 0;
    background: #adff2f;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
.hero {
  background: url("img/frame2.png") no-repeat center center;
    background-position: center center; /* картинка по центру */
    background-size: cover; /* растянуть */
    min-height: 100vh; 
    padding-block: clamp(40px, 17vh, 80px); /* отступ сверху/снизу */
    text-align: left;
  }

  .hero__text {
    font-size: clamp(20px, 1.6vw, 25px);
    margin-bottom: clamp(30px, 10vw, 50px);
    width: 100%;
    line-height: 1.2;
}

  .hero h1 {
    font-size: clamp(20px, 9vw, 43px);
    line-height: 1;
    margin-bottom: clamp(16px, 10vw, 40px);
        width: 100%;

  }
.hero__inner{
  max-width: 100%;
    padding: 0 24px;   /* небольшой отступ вместо 140px */
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}
  .hero__subtitle {
    font-size: clamp(14px, 4vw, 16px);
    margin-bottom: clamp(20px, 4vw, 28px);
    width: clamp(100%,115%,120%);
  }
.hero__btn {
   
    width: 100%;
    text-align: center;
    padding: clamp(14px, 5vw, 20px) 0;
    font-size: clamp(14px, 5vw, 20px);

}
  .hero .btn {
    width: 100%; /* кнопка на всю ширину экрана */
    max-width: 320px; /* но не слишком большая */
    margin-inline: auto; /* по центру */
    
  }

  .hero__note {
  font-size: clamp(12px, 4.2vw, 16px);
  margin-top: clamp(6px, 3vw, 10px);
  color: #F8F8F8;
  width: 100%;
  

}
.cards-slider{display: block; margin: 50px -25px 0 0;   overflow: hidden; 
}


.cards-slider .swiper-wrapper {
  width: 100%;         
  
}

.card-mobile {
    width: 90vw !important;
    max-width: clamp(280px, 80vw, 372px);;
    height: auto;
    border-radius: clamp(6px, 0.8vw, 8px);
    flex-shrink: 0;
      background: linear-gradient(180deg, #0E1A09 0%, #081005 100%);

    padding: clamp(15px, 8vw, 30px);
    position: relative;
    box-sizing: border-box;
    }
.card-mobile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(150deg, #E2FF00, #787664);
  
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
  z-index: 2; 
}


.card-mobile__title {
  font-size: 8vw;           /* текст подстраивается */
  font-weight: 700;
  margin-top: -5px;
}

.card-mobile__from {
  font-size: 4vw;
  color: #787664;
  font-weight: 700;
}

.card-mobile__bottom {
  display: flex;
  align-items: center;
  gap: 3vw;
}

.card-mobile__price {
  font-size: 8vw;           /* текст подстраивается */
  font-weight: 700;
  color: #E2FF00;
}

.card-mobile__note {
  font-size: 4vw;
  color: #fff;
  background: #787664;
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 700;
}

/* Пагинация */

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    
    margin: 10px 0;
}
.cards-slider-pagination .swiper-pagination-bullet {
  background: #666;
}
.cards-slider-pagination .swiper-pagination-bullet-active {
  background: #E2FF00;
}




.solutions .container{
  padding: 10px 24px;
  max-width: 100%;
  margin: 0;
}

.solutions__grid-top,
  .solutions__grid-bottom
  {
    display: flex;
    flex-direction: column; /* все в колонку */
    gap: 24px;
  }
.solutions{
  padding: clamp(80px, 50vw, 250px) 0 clamp(40px, 6vw, 90px);

}

.solutions__title {
    
    font-size: clamp(14px, 4vw, 18px);
    margin-bottom: clamp(10px, 5vw, 20px);
    color: #F8F8F8;
    
}

.solutions__title__span {
    font-size: clamp(20px, 7.5vw, 36px);
    color: #E2FF00;
    text-align: center;
    font-weight: 800;
    margin: 0 auto;
    width: 100%;
    margin-bottom: clamp(15px, 10vw, 40px);
}

.solutions__subtitle {
    font-size: clamp(14px, 5vw, 20px);
    line-height: 1.2;
    width: 100%;
        margin-bottom: clamp(15px, 10vw, 40px);
        padding: 0 24px;

}



.solutions__grid-top .solutions__item h3 {
    color: #E2FF00;
    font-size: clamp(18px, 4.5vw, 24px);
    font-weight: 800;
    text-align: center;
}

.solutions__desc {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    margin: 30px 0 0;
        font-size: clamp(14px, 3.5vw, 18px);

}

.solutions__item--tms p {
    text-align: left;
    margin: 30px 0 40px;
    font-size: clamp(14px, 3.5vw, 18px);
    line-height: 1.2;
}

    .solutions__img {
        content: url(img/6.png);
        position: absolute;
        bottom: 1px;
        right: 0%;
        max-width: 87%;
        height: clamp(160px, 57vw, 237px);
        width: clamp(432px, 100vw, 667px);
        z-index: 0;
    }

.solutions__grid-top .solutions__item {
    height: clamp(372px, 100vw, 410px);
}

.solutions__grid-top .solutions__item--tms{height: clamp(400px, 120vw, 540px);
}
.solutions__item {
  display: flex;
  flex-direction: column;
  align-items: center;   /* иконка и текст по центру */
  justify-content: flex-start;
  position: relative;
  border-radius: clamp(6px, 0.8vw, 8px);
  padding: clamp(20px, 14vw, 50px);
  color: #fff;
  overflow: hidden;
  text-align: center;    /* чтобы заголовок и p были по центру */
}
.solutions__item--small--second {
  
    height: clamp(120px, 125vw, 520px);
    gap: 0;
 
}
.solutions__item--small{
    height: clamp(120px, 115vw, 470px);
    gap: 0;
    
}

.solutions__icon{
  width: clamp(40px, 35vw, 130px);
  height: auto;
  align-items: center;
}
.solutions__icon__one {
  width: clamp(40px, 35vw, 150px);
  height: auto;
  margin-bottom: 20px; /* отступ от заголовка */
  left: unset;
}

.solutions__text h3 {
    margin: 40px auto 0;
    color: #E2FF00;
    font-size: clamp(14px, 4.5vw, 24px);
    font-weight: 800;
    text-align: center;
    width: 70%;
}
.solutions__col-left p {
    margin: 20px auto 0;
    font-size: clamp(12px, 4vw, 18px);
    line-height: 1.2;
    color: #fff;
    text-align: center;
}


.solutions__item--middle {
   height: clamp(300px, 130vw, 550px); /* управляем только высотой */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* содержимое всегда прижато вверх */
  text-align: center;
  padding: clamp(20px,11vw, 50px);
  border-radius: 10px;
  background: linear-gradient(180deg, #0E1A09 0%, #081005 100%);
}


.solutions__item.solutions__item--middle h3 {
    font-size: clamp(14px, 5vw, 24px);
    margin-bottom: 30px;
}

.solutions__item.solutions__item--middle p {
    font-size: 18px;
    text-align: left;
    margin-bottom: 50px;
}
.solutions__img--bottom {
    width: clamp(250px, 70vw, 340px);
  height: auto;
  margin: 0;
  position: static;
}
.solutions__text {
  display: flex;
  flex-direction: column;
  align-items: center;  /* чтобы h3 и p были по центру */
}




.form {
      text-align: left;
    
    margin: 50px 0 clamp(80px, 12vw, 200px);
    padding: 0 24px;
}

.form h2 {
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 800;
    margin-bottom: clamp(30px, 11vw, 50px);
    line-height: 1.2;
}


.form__grid--mobile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Поля */
.form__grid--mobile input {
  padding: 30px;
  border: 1px solid #787664;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: 20px;
  transition: border-color 0.3s;
}

.form__grid--mobile input:focus {
  border-color: #E2FF00;
  outline: none;
}

/* Контейнер под label */
.form__field {
  position: relative;
  width: 100%;
}

.form__field label {
  position: absolute;
  top: -10px;
  left: 12px;
  font-size: 14px;
  color: #fff;
  background: #0E1A09; /* фон формы */
  padding: 0 6px;
  z-index: 2;
}

/* контейнер селекта */
.custom-select {
  border: 1px solid #787664;
  border-radius: 6px;
  background: #0c1400;
  cursor: pointer;
  font-size: 16px;
}

/* шапка */
.custom-select__header {
  padding: 30px;
  position: relative;
  font-size: 20px;
}

/* стрелка */
.custom-select__header::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #E2FF00;
  transition: transform 0.3s;
}

.custom-select.open .custom-select__header::after {
  transform: translateY(-50%) rotate(180deg);
}

/* список */
.custom-select__list {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #0c1400;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: max-height 0.3s ease, border-color 0.3s ease, margin-top 0.3s ease;
}

.custom-select.open .custom-select__list {
  max-height: 300px; /* раскрытие */
  margin-top: 8px;
  border-color: #E2FF00;
}

/* пункты */
.custom-select__list li {
  padding: 20px;
  font-size: 20px;
  transition: background 0.2s;
}

.custom-select__list li:hover {
  background: #1a1f0d;
  color: #E2FF00;
}

.form__row {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 50px 0;
    gap: 0;
}

.btn--big {
    flex: 0 0 60%;
    padding: clamp(15px, 5vw, 25px) clamp(15px, 5vw, 27px);
    background: #E2FF00;
    color: #000;
    font-weight: bold;
    font-size: clamp(17px, 4vw, 25px);
    border-radius: clamp(4px, 0.6vw, 6px);
    transition: 0.3s;
    text-align: center;
    white-space: nowrap;
    font-family: 'Montserrat';
    width: 100%;
}

.form__stat span {
    font-size: clamp(20px, 6vw, 34px);
    font-weight: 800;
    color: #E2FF00;
    display: block;
    margin-bottom: clamp(5px, 1vw, 10px);
    text-align: left;
}

.form__stat p {
    margin: 0;
    font-size: clamp(12px, 3vw, 16px);
    color: #fff;
    text-align: left;
    font-weight: 700;
}
.form__stat small {
    margin: 0;
    font-size: clamp(10px, 1.2vw, 13px);
    color: #787664;
    text-align: left;
    font-weight: 400;
}

.form__stat {
    position: relative;
    border-radius: clamp(4px, 0.6vw, 8px);
    padding: clamp(15px, 4.5vw, 20px);
    flex: 1;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, #0E1A09 0%, #081005 100%);
    z-index: 0;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
    height: 115px;
}
.benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 80px 24px;
  }

.benefits__subtitle {
    font-size: clamp(14px, 5vw, 18px);
    text-transform: uppercase;
    margin-bottom: clamp(10px, 5vw, 20px);
    color: #fff;
    font-family: "Grifter Bold", Arial, sans-serif;
}
.benefits__title {
    font-size: clamp(20px, 8vw, 32px);
    font-weight: 900;
    line-height: 1.1;
    color: #E2FF00;
    margin-bottom: clamp(20px, 10vw, 40px);
    width: 100%;
}

.benefits__text {
    font-size: clamp(14px, 5vw, 20px);
    color: #F8F8F8;
    margin-bottom: clamp(20px, 11vw, 50px);
    width: 100%;
}
    .btn--small {
        display: inline-block;
        background: #E2FF00;
        color: #000;
        font-weight: bold;
        font-size: clamp(14px, 5vw, 20px);
        padding: clamp(15px, 6vw, 25px);
        border-radius: clamp(4px, 0.6vw, 6px);
        transition: 0.3s;
        width: 100%;
        text-align: center;
        text-decoration: none;
        margin: 0 0 50px 0;
    }



.benefits__grid {
    
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* плавная фиксация */
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* скрыть полосу прокрутки */
    width: 100%;
  }

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

  
  .benefits__card {
  flex: 0 0 calc(100% - 60px); /* карточка чуть меньше ширины контейнера */
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start; /* каждая прилипает в начале */
  transition: none;
}

.benefits__card:hover,
  .benefits__card.active {
    transform: none;
    width: auto;        /* ❌ убираем эффекты изменения ширины */
  }

  .benefits__overlay {
    height: auto; 
    transition: none;
  }

  .benefits__overlay .benefits__tag,
  .benefits__overlay p {
    opacity: 1;
  }

.benefits__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 120px;
    padding: 16px;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.9) 100%);
    color: #fff;
    transition: none;   /* ❌ отключаем плавности */
  }

  .benefits__overlay .benefits__tag,
  .benefits__overlay p {
    opacity: 1; 
  }


.benefits__overlay h3 {
    font-size: clamp(14px, 5vw, 18px);
    margin-bottom: 8px;
  }

.benefits__overlay .benefits__tag {
    font-size: clamp(12px, 4vw, 14px);
    color: #E2FF00;
    margin-bottom: 8px;
  }
.benefits__overlay p {
    font-size: clamp(12px, 4vw, 16px);
    color: #ccc;
    margin: 0;
  }








.reviews {
    padding: 0 0 0 24px;
    text-align: center;
}

.reviews__title span {
    font-size: clamp(14px, 5vw, 20px);
    
}
  .reviews__title{
    font-size: clamp(20px, 10vw, 36px);
    width: 100%;
    margin: clamp(20px, 6vw, 60px) 0 clamp(40px, 6vw, 60px);    
    text-align: left;
  }
  
.review {
    border-radius: clamp(4px, 0.6vw, 8px);
    padding: clamp(15px, 2vw, 30px);
    background: linear-gradient(180deg, #1a1f0d 0%, #0d0f07 100%);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
    height: clamp(180px, 49vw, 230px);
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    width: 360px !important;
}

.review__text {
    font-size: clamp(12px, 5vw, 20px);
    line-height: 1.2;
    color: #fff;
    margin-bottom: clamp(10px, 2vw, 20px);
}

.review__author {
    font-size: clamp(12px, 5vw, 20px);
    font-weight: 700;
    color: #E2FF00;
    text-align: right;
}


.faq {
    display: flex
;
    flex-direction: column;
    align-items: center;
    margin-bottom: clamp(40px, 15vw, 60px);
    padding: 150px 24px 80px;
}
.faq__title span {
    font-size: clamp(12px, 5vw, 20px);
    margin-bottom: clamp(-40px, -4vw, -40px);
    
}
  .faq__title {
    width: 100%;
    text-align: center;
    font-size: clamp(20px, 10vw, 35px);
    margin-bottom: clamp(20px, 15vw, 50px);
  }

  .faq__content {
    flex-direction: column;
    gap: 8px;
  }

  .faq__accordion,
  .faq__contact {
    width: 100%;
    height: auto;
  }

  .faq__question {
    padding: clamp(15px, 5.5vw, 25px) ;
    font-size: clamp(12px, 4vw, 20px);
    line-height: 1.2;
    
}

.faq__answer {
    
    padding: 0 clamp(10px, 2vw, 20px);
    font-size: clamp(12px, 3.5vw, 18px);
    line-height: 1.2;
 
}

.faq__item.active .faq__answer {
    padding: 0 clamp(10px, 6vw, 25px) clamp(10px, 6vw, 25px) clamp(10px, 6vw, 25px);
}
.faq__icon {
    margin: 0 auto clamp(20px, 10vw, 40px) auto;
    width: clamp(46px, 30vw, 130px);
}

.faq__subtitle {
    font-size: clamp(14px, 5vw, 20px);
    text-align: center;
        margin: 0 auto clamp(20px, 3vw, 40px) auto;
        width: 65%;

}
.faq__email {
    font-size: clamp(14px, 5vw, 20px);
    margin-bottom: clamp(20px, 10vw, 40px);
}
.faq__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: clamp(20px, 10vw, 40px);
    flex-direction: column;
}
.faq__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: clamp(10px, 5vw, 20px);
    font-size: clamp(18px, 4.5vw, 20px);
    flex-direction: row;
    width: 100%;
}

.faq__btn img {
    width: clamp(30px, 2vw, 40px);
}


.faq__contact {
    
    padding: clamp(50px, 10vw, 70px);
}

.faq__phone {
    font-size: clamp(10px, 5vw, 20px);
    line-height: 1.2;
 
}

.footer p {
    font-size: clamp(12px, 3vw, 15px);
}

.footer {
    padding: clamp(20px, 10vw, 40px) clamp(20px, 11vw, 45px);
}

.footer .container {
    padding: 0 24px;
    max-width: 100%;
    margin: 0;

}
}

@media (max-width: 360px) {


.container {
    padding: 0 12px;
  }

  .faq__contact {
    padding: 0 12px;
    }
}

@media (max-width: 480px) {
  .desbut {
    display: none;
  }
  .contbl {margin-top: 0px; padding-top:30px;}
} 
@media (min-width: 480px) {
  .mobbut {
    display: none;
  }
} 