html {
    box-sizing: border-box;
}
*,*::before, *::after {
    box-sizing: inherit;
}
body {
    background-color: #FFD500;
    text-align: center;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1268px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
.title {
    margin: 0;
    margin-top: -45px;
    padding-top: 124px;
    font-size: 124px;
    letter-spacing: -7px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    color: #000000;
    text-align: left;
    display: flex;
    align-content: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.video { 
    font-size: 124px;
    letter-spacing: -7px;
    line-height: 120px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    color: #000000; 
}
.prod { 
    font-size: 124px;
    letter-spacing: -7px;
    line-height: 120px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    color: #000000; 
}
.bezslov {
    margin: 0;
    font-size: 201px;
    letter-spacing: -3px;
    line-height: 152px;
    position: relative;
    text-transform: uppercase;
    color: #000000;
    font-weight: 900;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    text-align: left;
}
.subtitle {
    max-width: 1440px;
    width: 100%;
    margin: 0 0 94px 0;
}
.subtitle {
    margin-top: -15px;
    font-size: 20px;
    letter-spacing: -0.5px;
    line-height: 20px;
    color: #000000;
    font-weight: 500;
    font-family: "Lora";
    margin-right: auto;
    text-align: left;
    position: relative;
    padding-left: 7px;
}
.text {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0px;
}
.text {
    margin-top: -45px;
    margin-bottom: 18px;
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 21px;
    color: #000000;
    font-weight: 400;
    font-family: "Press Start 2P";  
}
.footer {
    display: flex;
    justify-content: center; /* Выравниваем по центру */
    gap: 50px; /* Расстояние между кнопками */
    margin-top: -20px; /* Смещаем вниз */
}
/* Смещение каждой кнопки */
.button1 {
    transform: translateX(-20px); /* Смещаем влево */
    transform: translateY(13px); 
}
.button2 {
    transform: translateX(-18px); /* Смещаем вправо */
}
/* Анимация при наведении */
.button1:hover img {
    animation: hoverEffect 0.3s forwards;
}
.button2:hover img {
    animation: hoverEffect 0.3s forwards;
}
/* Определяем анимацию */
@keyframes hoverEffect {
    0% {
        transform: scale(0.9) translateY(0);
    }
    100% {
        transform: scale(1) translateY(-5px);
    }
}
.mail {
    margin: 0 auto;
    margin-top: 5px;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 20px;
    color: #000000;
    font-weight: 600;
    font-family: "Lora";
    margin-right: auto;
    position: relative;
    top: 25px;
}
.call {
    margin: 0 auto;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 20px;
    color: #000000;
    font-weight: 600;
    font-family: "Lora";
    margin-right: auto;
    position: relative;
    top: 25px;
}
.call-link {
    color: inherit; /* Наследует цвет от родителя */
    text-decoration: none; /* Убирает подчёркивание */
    font-size: inherit; /* Сохраняет размер шрифта */
}
.rights {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 20px;
    color: #000000;
    font-weight: 500;
    font-family: "Lora";
    margin-right: auto;
    position: relative;
    top: 35px;
    padding-bottom: 20px; /* Внутренний отступ внутри блока */
    margin: 0 auto;
}

/* Стили для кнопки обратной связи */
.feedback-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #000;
  color: #FFD500;
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  padding: 15px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feedback-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}
/* Стили для модального окна */
.feedback-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
}
.modal-content {
  background-color: #000;
  margin: 7% auto;
  padding: 30px;
  border: 2px solid #FFD500;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 213, 0, 0.3);
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #FFD500;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}
.close-btn:hover {
  color: #fff;
}
/* Стили для формы */
.modal-title {
  font-family: 'Press Start 2P', cursive;
  color: #FFD500;
  font-size: 18px;
  text-align: center;
  margin-bottom: 25px;
}
.feedback-form label {
  font-family: 'Press Start 2P', cursive;
  font-size: 10px;
  display: block;
  margin-bottom: 8px;
  color: #FFD500;
}
.feedback-form input,
.feedback-form textarea {
  font-family: 'Lora', sans-serif;
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  background-color: #222;
  color: #fff;
}
.feedback-form textarea {
  resize: vertical;
  min-height: 100px;
}
.feedback-form input:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: #FFD500;
}
.submit-btn {
  font-family: 'Press Start 2P', cursive;
  background-color: #FFD500;
  color: #000;
  border: none;
  padding: 15px;
  font-size: 12px;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.submit-btn:hover {
  background-color: #ffea00;
}

@media (max-width: 850px) {
.prod {
        font-size: 100px;
    }
/* Стили для кнопки обратной связи */
.feedback-btn {
    font-size: 10px;
    padding: 12px 20px;
    bottom: 20px;
    right: 20px;
  }
/* Стили для модального окна */
.modal-content {
    margin: 20% auto;
    padding: 20px;
  }
/* Стили для формы */
.modal-title {
    font-size: 14px;
  }
}

@media (max-width: 650px) {
    .title {
        padding-top: 96px;
        margin-top: -35px;
    }
    .video {
        font-size: 120px;
        width: 100%;
        line-height: 122%;
        max-width: 450px;
        margin: 0 auto;
    }
    .prod {
        font-size: 69px;
        line-height: 122%;
        width: 100%;
        letter-spacing: -4px;
        max-width: 440px;
        margin: 0 auto;
        margin-top: -21px;
    }
    .bezslov {
        font-size: 68px;
        line-height: 120%;
        letter-spacing: unset;
        max-width: 435px;
        margin: 0 auto;
        margin-top: -10px;
    }
    .subtitle {
        display: flex;
        justify-content: flex-start;
        white-space: nowrap;
        font-weight: 500;
        letter-spacing: 0.6px;
        font-size: 11px;
        line-height: 12px;
        text-align: left;
        max-width: 430px;
        margin: 0 auto 86px;
        margin-top: -14px;
        padding: 0;
    }
    .text {
        font-size: 12px;
        line-height: 17px;
        color: #000000;
        font-weight: 400;
        max-width: 400px;
        margin: 0 auto 16px;
}
.footer {
    display: flex;
    justify-content: center; /* Выравниваем по центру */
    gap: 0px; /* Расстояние между кнопками */
    transform: scale(0.9);
    margin-bottom: 163px;
    margin-top: -40px;
}
/* Смещение каждой кнопки */
.button1 {
    transform: translate(0px, 6px) scale(0.9); /* Смещаем влево */
}
.button2 {
        transform: translate(-25px, 0) scale(0.9); /* Смещаем вправо */
    }
    .button1:active img,
    .button2:active img {
        transform: scale(1); /* Уменьшаем при нажатии */
    }
.call {
        font-size: 11px;
        letter-spacing: 0px;
        line-height: 20px;
        color: #000000;
        font-weight: 600;
        font-family: "Lora";
        margin-right: auto;
        position: relative;
        margin: 0;
        top: -151px;
}    
.mail {
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 20px;
        color: #000000;
        font-weight: 600;
        font-family: "Lora";
        margin-right: auto;
        position: relative;
        margin: 0 auto;
        margin-top: -180px;
    }
.rights {
        font-size: 12px;
        letter-spacing: -0px;
        line-height: 20px;
        color: #000000;
        font-weight: 500;
        font-family: "Lora";
        margin-right: auto;
        position: relative;
        margin-top: -10px;
    }
 /* стили для номера телефона */
.call {
    color: #000000 !important; /* Черный цвет вместо синего */
    text-decoration: none !important; /* Убираем подчеркивание */
    -webkit-tap-highlight-color: transparent; /* Убираем синий при тапе на iOS */
  }
  /* Делаем ссылку кликабельной */
 a[href^="tel:"] {
    color: inherit; /* Наследует цвет родителя */
    text-decoration: none;
  }

  /* Скрываем оригинальный текст */
  .feedback-btn span {
    display: none;
  }
  /* Добавляем новый короткий текст */
  .feedback-btn::after {
    content: "СВЯЗЬ";
    display: inline-block;
  }
}

@media (max-width: 490px) {
     .title {
        padding-top: 96px;
        margin-top: -35px;
    }
    .video {
        font-size: 103px;
        width: 100%;
        line-height: 122%;
        max-width: 380px;
        margin: 0 auto;
    }
    .prod {
        font-size: 59px;
        line-height: 122%;
        width: 100%;
        letter-spacing: -4px;
        max-width: 375px;
        margin: 0 auto;
        margin-top: -21px;
    }
    .bezslov {
        font-size: 58px;
        line-height: 120%;
        letter-spacing: unset;
        max-width: 370px;
        margin: 0 auto;
        margin-top: -10px;
    }
    .subtitle {
        display: flex;
        justify-content: flex-start;
        white-space: nowrap;
        font-weight: 500;
        letter-spacing: 0.6px;
        font-size: 11px;
        line-height: 12px;
        text-align: left;
        max-width: 365px;
        margin: 0 auto 86px;
        margin-top: -14px;
        padding: 0;
    }
    
    .text {
        font-size: 11px;
        line-height: 17px;
        color: #000000;
        font-weight: 400;
        max-width: 400px;
        margin: 0 auto 16px;
}
.footer {
    display: flex;
    justify-content: center; /* Выравниваем по центру */
    gap: 0px; /* Расстояние между кнопками */
    transform: scale(0.9);
    margin-bottom: 143px;
    margin-top: -40px;
}
/* Смещение каждой кнопки */
.button1 {
    transform: translate(35px, 6px) scale(0.75); /* Смещаем влево */
}
.button2 {
        transform: translate(-38px, 0) scale(0.75); /* Смещаем вправо */
    }
    .button1:active img,
    .button2:active img {
        transform: scale(1); /* Уменьшаем при нажатии */
    }
.call {
        font-size: 11px;
        letter-spacing: 0px;
        line-height: 20px;
        color: #000000;
        font-weight: 600;
        font-family: "Lora";
        margin-right: auto;
        position: relative;
        margin: 0;
        top: -151px;
}    
    
.mail {
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 20px;
        color: #000000;
        font-weight: 600;
        font-family: "Lora";
        margin-right: auto;
        position: relative;
        margin: 0 auto;
        margin-top: -180px;
    }
.rights {
        font-size: 12px;
        letter-spacing: -0px;
        line-height: 20px;
        color: #000000;
        font-weight: 500;
        font-family: "Lora";
        margin-right: auto;
        position: relative;
        margin-top: -10px;
    }
}

@media (max-width: 415px) {
       .title {
        padding-top: 96px;
        margin-top: -35px;
    }
    .video {
        font-size: 90px;
        width: 100%;
        line-height: 122%;
        max-width: 330px;
        margin: 0 auto;
    }
    .prod {
        font-size: 52px;
        line-height: 122%;
        width: 100%;
        letter-spacing: -4px;
        max-width: 325px;
        margin: 0 auto;
        margin-top: -21px;
    }
    .bezslov {
        font-size: 51px;
        line-height: 120%;
        letter-spacing: unset;
        max-width: 325px;
        margin: 0 auto;
        margin-top: -10px;
    }
    .subtitle {
        display: flex;
        justify-content: flex-start;
        white-space: nowrap;
        font-weight: 500;
        letter-spacing: 0.6px;
        font-size: 11px;
        line-height: 12px;
        text-align: left;
        max-width: 320px;
        margin: 0 auto 86px;
        margin-top: -14px;
        padding: 0;
    }
    
    .text {
        font-size: 10px;
        line-height: 17px;
        color: #000000;
        font-weight: 400;
        max-width: 400px;
        margin: 0 auto 16px;
}
.footer {
    display: flex;
    justify-content: center; /* Выравниваем по центру */
    gap: 0px; /* Расстояние между кнопками */
    transform: scale(0.9);
    margin-bottom: 143px;
    margin-top: -40px;
}
/* Смещение каждой кнопки */
.button1 {
    transform: translate(35px, 6px) scale(0.75); /* Смещаем влево */
}
.button2 {
        transform: translate(-38px, 0) scale(0.75); /* Смещаем вправо */
    }
    .button1:active img,
    .button2:active img {
        transform: scale(1); /* Уменьшаем при нажатии */
    }
.call {
        font-size: 11px;
        letter-spacing: 0px;
        line-height: 20px;
        color: #000000;
        font-weight: 600;
        font-family: "Lora";
        margin-right: auto;
        position: relative;
        margin: 0;
        top: -151px;
}    
    
.mail {
        font-size: 12px;
        letter-spacing: 0px;
        line-height: 20px;
        color: #000000;
        font-weight: 600;
        font-family: "Lora";
        margin-right: auto;
        position: relative;
        margin: 0 auto;
        margin-top: -180px;
    }
.rights {
        font-size: 12px;
        letter-spacing: -0px;
        line-height: 20px;
        color: #000000;
        font-weight: 500;
        font-family: "Lora";
        margin-right: auto;
        position: relative;
        margin-top: -10px;
    }
}

@media (max-width: 360px) {
    .title {
        padding-top: 96px;
        margin-top: -35px;
    }
    .video {
        font-size: 80px;
        width: 100%;
        line-height: 122%;
        max-width: 290px;
        margin: 0 auto;
    }
    .prod {
        font-size: 46px;
        line-height: 122%;
        width: 100%;
        letter-spacing: -4px;
        max-width: 285px;
        margin: 0 auto;
        margin-top: -19px;
    }
    .bezslov {
        font-size: 44px;
        line-height: 120%;
        letter-spacing: unset;
        max-width: 285px;
        margin: 0 auto;
        margin-top: -10px;
    }
    .subtitle {
        display: flex;
        justify-content: flex-start;
        white-space: nowrap;
        font-weight: 500;
        letter-spacing: 0.6px;
        font-size: 10px;
        line-height: 12px;
        text-align: left;
        max-width: 280px;
        margin: 0 auto 86px;
        margin-top: -11px;
        padding: 0;
    }
    
    .text {
        font-size: 8px;
        line-height: 17px;
        color: #000000;
        font-weight: 400;
        max-width: 400px;
        margin: 0 auto 1px;
}
.footer {
    display: flex;
    justify-content: center; /* Выравниваем по центру */
    gap: 0px; /* Расстояние между кнопками */
    transform: scale(0.9);
    margin-bottom: 143px;
    margin-top: -40px;
}
/* Смещение каждой кнопки */
.button1 {
    transform: translate(45px, 6px) scale(0.6); /* Смещаем влево */
}
.button2 {
        transform: translate(-58px, 0) scale(0.6); /* Смещаем вправо */
    }
    .button1:active img,
    .button2:active img {
        transform: scale(1); /* Уменьшаем при нажатии */
    }
.call {
        font-size: 10px;
        letter-spacing: 0px;
        line-height: 20px;
        color: #000000;
        font-weight: 600;
        font-family: "Lora";
        margin-right: auto;
        position: relative;
        margin: 0;
        top: -151px;
}    
    
.mail {
        font-size: 11px;
        letter-spacing: 0px;
        line-height: 20px;
        color: #000000;
        font-weight: 600;
        font-family: "Lora";
        margin-right: auto;
        position: relative;
        margin: 0 auto;
        margin-top: -180px;
    }
.rights {
        font-size: 10px;
        letter-spacing: -0px;
        line-height: 20px;
        color: #000000;
        font-weight: 500;
        font-family: "Lora";
        margin-right: auto;
        position: relative;
        margin-top: -10px;
    }
}

/* 320px - Минимальная адаптация */
@media (max-width: 320px) {
}