@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 0 40px;
  } 

  .container-threads {
    padding: 0 40px;
  }
  
  /* Скрываем навигацию по умолчанию на планшетах */
  .nav-wrapper {
    display: none !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 120px 30px 40px;
  }
  
  .nav-wrapper.active {
    right: 0;
    display: block !important;
  }
  
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); 
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }
  
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  
  .nav-item {
    font-size: 20px;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .nav-btn {
    width: 100%;
    max-width: none;
    margin-top: 30px;
    height: 65px;
    font-size: 20px;
    border-radius: 12px;
  }
  
  /* Показываем кнопку меню на планшетах */
  .menu-toggle {
    display: block !important;
    position: static;
    order: 2;
    z-index: 1001;
  }
  
  .header-line {
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
  }
  
  .header-logo {
    z-index: 1002 !important;
    width: 180px;
    order: 1;
    margin: 0;
  }

  .header-logo img {
    width: 100%;
  }
  
  .motto {
    margin-top: -100px;
    padding: 200px 0 80px 0;
  }
  
  .motto-img {
    width: 68px;
    margin-bottom: 25px;
  }
  
  .motto-text {
    font-size: 42px;
  }
  
  .threads {
    margin-top: -80px;
    padding: 80px 0;
  }
  
  .threads-btn {
    width: calc(50% - 15px);
    height: 500px;
    max-width: 480px;
    padding: 35px;
  }
  
  .threads-btn-logo {
    width: 90px;
    margin-bottom: 28px;
  }
  
  .threads-btn-name {
    font-size: 40px;
  }
  
  .threads-btn-text {
    font-size: 17px;
  }
  
  .threads-btn-arrow {
    width: 52px;
    height: 52px;
    top: 35px;
    right: 35px;
  }

  .application-text {
    font-size: 42px;
  }

  .input-item {
    font-size: 24px;
    padding-top: 40px;
    padding-bottom: 15px;
  }

  .application-btns {
    gap: 40px;
    margin-top: 50px;
  }

  .application-btn_file {
    width: 320px;
    height: 65px;
    font-size: 24px;
    border-radius: 14px;
  }

  .file-uppload-img {
    width: 30px;
  }

  .application-btn {
    width: 200px;
    height: 70px;
    font-size: 24px;
    border-radius: 14px;
  }

  .application-btn-text {
    max-width: 400px;
    font-size: 16px;
  }

  .contacts {
    padding: 80px 0 50px 0;
  }

  .contacts .contacts-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }

  .contacts-left {
    max-width: 250px;
  }

  .contacts-right {
    align-items: flex-start;
    margin-left: auto;
    text-align: left;
  }

  .contacts-text1 {
    font-size: 42px;
    margin-bottom: 25px;
  }

  .contacts-text2 {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .contacts-text3 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .contacts-text4 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: right;
  }

  .intro-wrapper .container {
    gap: 30px;
  }

  .intro {
    min-height: auto;
    padding: 30px;
    border-radius: 25px;
    width: 100%;
  }

  .intro-text {
    font-size: 36px;
  }

  .intro-image {
    width: 100%;
    max-width: 500px;
  }

  .product-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .products-title {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .product-item h3 {
    font-size: 24px;
  }

  .product-item p {
    font-size: 16px;
  }

  .features-title {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .feature-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .feature-item h3 {
    font-size: 24px;
  }

  .feature-item p {
    font-size: 16px;
  }

  .feature-icon {
    width: 100px;
  }

  .custom-select-wrapper {
    font-size: 24px;
    padding-top: 40px;
    padding-bottom: 15px;
  }

  .custom-select-arrow {
    width: 22px;
  }
}