
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif; 
    
}

body {
  background-image: url('../../main/background.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

header {
  background-image: inherit; /* Наследует фон от body */
  background-repeat: inherit;
  background-position: inherit;
  background-size: inherit;
  background-attachment: inherit;
}

.hero-image img {
  position: absolute;
  top: 20px;
  left: 60px;
  width: 60px;
}

/* ======= Бургер ======= */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 10000;
  gap: 6px;

}

.burger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* ======= Меню по умолчанию ======= */
.nav-menu {
  display: flex;
  justify-content: center;
  gap: 100px;
  

}

.underline {
  padding: 25px 0;
   border-top: 0.1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 1em;
  transition: 0.3s;
  font-weight: 200 !important;
 
}

nav a span {
  color: #f57c00;
  
}

nav a:hover {
  color:  #f57c00;
  text-decoration: none;

}

@media (min-width: 769px) and (max-width: 1080px) {
  .burger {
    display: flex;
  }

  .underline {
    border: none;
  }

  nav.underline {
    display: none;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 80px 20px;
    gap: 20px;
    transition: left 0.3s ease;
    z-index: 9999;
  }

  .nav-menu.active {
    left: 0;
    display: flex;
  }

  .nav-menu .underline {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu a {
    color: white;
    font-size: 1.1em;
    text-decoration: none;
  }

  .nav-menu a:hover {
    color: orange;
  }

   .burger span {
    background-color: #ffffff;
  }
.hero-image img {
    left: 30px;
    width: 50px;
  }

}

/* ==============================
   АДАПТАЦИЯ ДО 768
============================== */
/* ==============================
   БУРГЕР-МЕНЮ 480–768px
============================== */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
 
  .underline {
    border: none;
  }

  /* Меню скрыто по умолчанию */
  .nav-menu {
    position: absolute;
    top: -100%; /* прячем вверх */
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
    transition: top 0.4s ease;
    z-index: 9999;
  }

  /* Когда активно — опускается вниз */
  .nav-menu.active {
    top: 0;
  }

  /* Чтобы .underline не ломала вертикаль */
  .nav-menu .underline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  /* Ссылки меню */
  .nav-menu a {
    color: white;
    font-size: 1.1em;
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-menu a:hover {
    color:  #ff9a00;
  }

    .burger span {
    background-color: #ffffff;
  }
   .hero-image img {
    left: 25px;
    width: 50px;
  }

}

/* ==============================
   ДО 480px
============================== */
@media (max-width: 480px) {


  /* Меню чуть компактнее */
  .nav-menu {
   background-color: rgba(0, 0, 0, 0.7);
   padding: 0 0;
  }
  .nav-menu a {
    font-size: 1em;
  }
  .burger span {
    background-color: #ffffff;
  }

   .hero-image img {
    left: 20px;
    width: 40px;
  }
}

@supports (-webkit-touch-callout: none) {
  header {
    background-attachment: scroll !important;
  }
}

/* КОНТЕЙНЕР */

.container {
    width: 95%;
    opacity: 0.85;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* ====== Адаптация под 1080px и меньше ====== */
@media (max-width: 1080px) {
.container {
  padding: 30px;
  margin-top: 60px;
}

}

/* ====== Адаптация под 768px ====== */
@media (max-width: 768px) {
   .container {
        padding: 30px;
        margin-top: 60px;
   }
}

/* ====== Адаптация под 480px ====== */
@media (max-width: 480px) {
    .container {
        padding: 20px;
        margin-top: 80px;
    }    
}








/* Телефон в правом углу */
.header-phone {
  position: absolute;
  right: 40px;
  top: 45px;
  transform: translateY(-50%);
  margin: 0;
}

.header-phone a {
  color: #FD7E14;
  font-size: 1.2em;
  font-weight: 400;
  text-decoration: none;
}

.header-phone a:hover {
  color: white;
}

/* Показываем телефон только до 1080px */
@media (max-width: 1080px) {
  .header-phone {
    position: absolute;
    left: 50px;
    top: 300px;
    transform: translateY(-50%);
    margin: 0;
    display: block;
  }

  .header-phone a {
    color: #f57c00;
    font-size: 1.2em;
    font-weight: 400;
    text-decoration: none;
  }

  .header-phone a:hover {
    color: white;
  }

  .header-phone img {
    display: none;
  }
}

/* УБРАТЬ телефон на 768px и ниже */
@media (max-width: 768px) {
  .header-phone {
    display: none !important;
  }
  
}

/* УБРАТЬ телефон на 480px и ниже */
@media (max-width: 480px) {
  .header-phone {
    display: none !important;
  }

}


/* Footer Styles */
.footer {
    background-color: #333;
    color: #eee;
    padding: 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    
}

.footer-section {
    width: 23%; /* 4 колонки */
    padding: 10px;
    text-align: left;
    box-sizing: border-box;
}

.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
}

.footer-section a {
    color: #eee;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    font-family: "Roboto", sans-serif;
    line-height: 30px;
    font-weight: 300;
}

.footer-section a:hover {
    color: #f57c00;
}

.footer-section p {
    line-height: 26px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 25px;
    font-size: 0.8em;
}


.footer-bottom a {
    color:#f57c00;
    text-decoration: none;
}

/* Tablets — 2 колонки */
@media (max-width: 768px) {
    .footer-section {
        width: 48%;
        text-align: center;
    }
}

/* Phones — 1 колонка */
@media (max-width: 480px) {
    .footer-section {
        width: 100%;
        text-align: left;
    }
    .footer-section a,
    .footer-section p {
        font-size: 0.9em;
    }
}

.always-carousel {
  margin: 0px 0;
  border-left: 3px solid black;
  padding-left: 20px;
  font-weight: bold;
  min-width: 150px;
  font-size: 1.2em;
  color: #000;
  margin-left: 0px;
  text-transform: uppercase;

}
.always-carousel span {
  color:#f57c00;
}

@media (max-width: 1080px) {
  .always-carousel {
    font-size: 1.4em;
    margin-left: 0px;
  } 
.always-carousel span {
  color: #f57c00;
} 
}
@media (max-width: 768px) {
  .always-carousel {
    margin-left: 0px;
    font-size: 1.1em;
  }
  

}
@media (max-width: 480px) {
  .always-carousel {
    margin-left: 0px;
    font-size: 1.2em;
  }

  .always-carousel h2 {
    font-size: 1.3em;
  }
}

.how-it-works {
    text-align: center;
    padding: 0px 20px;
    margin: 30px 0;

    
}

.how-it-works h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
    margin: 0 auto;
    width: 80%;
}

.step {
    width: 45%;
    margin: 20px;
    padding: 20px;
    text-align: left;
    box-sizing: border-box;
}

.step-number {
    background-color: #f57c00;
    color: white;
    border-radius: 50%;
    padding: 10px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.step h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #000;
}

.step p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    font-weight: 300;
}

@media (max-width: 480px) {
    .steps-container {
      width: 100%; /* Full width */
    }
  
    .step {
      width: 100%; /* Stack steps */
      margin: 20px 0; /* Adjust margins */
      padding: 15px;
    }
  
    .how-it-works h2 {
      font-size: 1.8em; /* Smaller heading */
    }
    .step h3 {
      font-size: 1.2em;
    }
  
    .step p {
      font-size: 1em;
    }
  }
  
  /* For screens between 481px and 768px */
  @media (min-width: 481px) and (max-width: 768px) {
    .steps-container {
      width: 90%;
    }
  
    .step {
      width: 48%; /* Adjust width to fit two steps in a row */
      margin: 15px;
      padding: 15px;
    }
  
    .how-it-works h2 {
      font-size: 2em;
    }
  
    .step h3 {
      font-size: 1.2em;
    }
  
    .step p {
      font-size: 1.05em;
    }
  }
  
  /* For screens between 769px and 1080px */
  @media (min-width: 769px) and (max-width: 1080px) {
    .steps-container {
      width: 85%;
    }
  
    .step {
      width: 46%; /* Slightly wider steps */
      margin: 18px;
      padding: 18px;
    }
  
    .how-it-works h2 {
      font-size: 2.2em;
    }
  
    .step h3 {
      font-size: 1.4em;
    }
  
    .step p {
      font-size: 1.15em;
    }
  }

/* ТРЕТИЙ БЛОК */
.background-timeline {
  background-color: #F6F6F6;
  padding: 50px 0;
  margin-top: 50px;
  
}

.always-title {
  border-left: 3px solid black;
  padding-left: 20px;
  font-weight: bold;
  min-width: 150px;
  font-size: 1.2em;
  color: #000;
  text-transform: uppercase;
  
}

.always-title span {
  color: #f57c00;
}
.always-title-gallary {
  border-left: 3px solid black;
  padding-left: 20px;
  font-weight: bold;
  min-width: 150px;
  font-size: 1.6em;
  color: #000;
  margin-left: 100px;
  margin: 40px;
}

@media (max-width: 480px) {
.always-title {
 margin-left: 0px!important;
font-size: 1.2em!important;
}
}
@media (max-width: 768px) {
  .always-title {
   margin-left: 0px!important;
    font-size: 1em;
  }
}

@media (max-width: 1080px) {
  .always-title{
    font-size: 1.4em;
    margin-left: 0px;
  }
}
/* ЧЕТВЕРТЫЙ БЛОК */
.experience {
  max-width: 1000px;
  margin: 0px auto;
  padding: 40px;

}

.checkbox-label {
  color: #000;
}


.experience h2 {
  font-size: 1.6em;
  color: #000;
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
  padding-left: 20px;
}

.experience h2 span {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: black;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9em;
  color: #000;
}

.checkbox-label {
  color: #000;
}

.checkbox-label a{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1em;
  color: #666;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 8px; /* More spacing */
  margin-bottom: 10px;
  width: 18px;    /* Larger checkbox */
  height: 18px;
}

input,
textarea {
  background-color: #fff;
  border: none;
  outline: none;
  padding: 12px 15px;
  font-size: 1em;
  color: #000;
  font-family: 'Roboto', sans-serif;
 
}

textarea {
  resize: none;
  height: 120px;
}


#comment, #name, #phone, #company {
  font-size: 0.9em; /* любой нужный размер */
}

.full-width {
  width: 100%;
}

.submit-btn {
  align-self: center;
  border-radius: 3px;
  width: 250px;
  height: 45px;
  background-color: #f57c00;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1em;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #b5661f;
  
}

.checkbox-label {
  font-weight:300;
}

select {
  background-color: #fff;
  border: none;
  outline: none;
  padding: 12px 15px;
  margin-bottom: 20px;
  font-size: 0.9em;
  color: #666;
  font-size: 1em;
  cursor: pointer;
}
/* ======= Адаптация ======= */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .submit-btn {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .experience {
    padding: 20px;
  }

  .experience h2 {
    font-size: 1.3em;
    margin-bottom: 30px;
  }

  input,
  textarea {
    font-size: 0.95em;
  }

  .submit-btn {
    width: 180px;
    height: 40px;
  }
  .checkbox-label {
  font-size: 0.95em;
}
}

.faq-section {
  background-color: #3b3b3b;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 30px;
  padding: 15px 35px;
 
}

.faq-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  padding: 15px 0;
  border-bottom: 1px solid #fff;
  cursor: pointer; /* Indicates the item is clickable */
}

.faq-list li:last-child {
  border-bottom: none;
}

.faq-item {
  display: flex;
  justify-content: space-between; /* Positions question and toggle */
  align-items: center;

}

.faq-question {
  flex-grow: 1;  /* Take up available space */
  font-size: 1.3em;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
}

.faq-toggle {
  font-size: 2em;
  transition: transform 0.3s ease;
      -webkit-user-select: none; /* для Safari 3+ */
    -moz-user-select: none;    /* для Firefox */
    -ms-user-select: none;     /* для IE/Edge */
    user-select: none;         /* стандартный синтаксис */
  min-width: 20px;   /* Ensure it takes up some space, even if empty */
  text-align: center;

}

.faq-list li.open .faq-toggle {
  transform: rotate(45deg); /* Rotates the plus sign */
    -webkit-user-select: none; /* для Safari 3+ */
    -moz-user-select: none;    /* для Firefox */
    -ms-user-select: none;     /* для IE/Edge */
    user-select: none;         /* стандартный синтаксис */
}

.faq-answer {
  padding: 10px 0;
  display: none;   /* Hidden by default */
  font-family: 'Roboto', sans-serif;
  font-weight: 200;
  font-style: normal;
  color: rgb(255, 255, 255);
  font-size: 1.1em;
}

.faq-list li.open .faq-answer {
  display: block;   /* Show when 'open' class is applied */
}

@media (min-width: 360px) and (max-width: 480px) {
  .faq-title {
    margin-bottom: 15px;
    font-size: 1.5em;
    
    
  }

  .faq-question {
    font-size: 1em;
    
  }

  .faq-answer {
    font-size: 0.8em;
  }

  .faq-toggle {
    font-size: 1.6em;
  }

  .faq-list li {
    padding: 10px 0;
  }
}

/* For screens between 461px and 768px (e.g., phones and small tablets) */
@media (min-width: 481px) and (max-width: 768px) {
  .faq-title {
    font-size: 1.5em;
    margin-bottom: 18px;
  }

  .faq-question {
    font-size: 1.2em;
  }

  .faq-answer {
    font-size: 1em;
  }
}

/* For screens between 769px and 1080px (e.g., tablets and smaller laptops) */
@media (min-width: 769px) and (max-width: 1080px) {
  .faq-question {
    font-size: 1.2em;
  }

  .faq-answer {
    font-size: 1.05em;
  }

  .faq-toggle {
    font-size: 1.8em;
  }

   .faq-list li {
    padding: 12px 0;
  }
}

/*For screens larger than 1080px (e.g., larger laptops and desktops)*/
@media (min-width: 1081px) {
   .faq-section{
       padding: 30px;
   }
   .faq-title{
       font-size: 1.8em;
       margin-bottom: 25px;
   }
   .faq-question{
       font-size: 1.2em;
   }
   .faq-answer{
       font-size: 1em;
       
   }
}

.geo-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  padding: 0px 0;
  margin-bottom: 40px;
  
}

.geo-actions {
  margin-top: 50px;
  margin-bottom: 30px;
  margin-left: 20px;
  
}

.geo-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #f57c00;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.geo-btn:hover {
  background: #dc6f01;
}

.geo-contacts {
  margin-top: 15px;
  margin-bottom: 50px;
    margin-left: 20px;
}

.geo-contact-item {
  margin-bottom: 8px;
  font-size: 16px;
}

.geo-contact-item a {
  color: #000;
  text-decoration: none;
}

.geo-contact-item a:hover {
  text-decoration: underline;
}


.geo-text {
  flex: 1;
}
@media (max-width: 1080px) {
  .geo-description p {
    font-size: 17px;
  }

  .geo-btn {
    padding: 14px 28px;
  }
}

/* ===================== */
/* ===== 768px ======== */
/* ===================== */
@media (max-width: 768px) {
  .geo-text {
    max-width: 100%;
    text-align: left;        /* ← ВАЖНО */
    align-items: flex-start; /* ← ВАЖНО */
  }

  .geo-description p {
    font-size: 16px;
  }

  .geo-actions {
    width: auto;
  }

  .geo-btn {
    width: auto;
    max-width: none;
    text-align: left;
  }

  .geo-contacts {
    text-align: left;        /* ← ВАЖНО */
    align-items: flex-start;
  }
}


/* ===================== */
/* ===== 480px ======== */
/* ===================== */
@media (max-width: 480px) {
  .geo-description p {
    font-size: 15px;
    line-height: 1.5;
  }

  .geo-btn {
    font-size: 15px;
    padding: 12px 20px;
  }

  .geo-contact-item {
    font-size: 15px;
  }
}


.geo-offer-alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.geo-offer-alt__image {
  flex: 1;
}

.geo-offer-alt__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.geo-offer-alt__text {
  flex: 1;
  font-family: 'Roboto', sans-serif; 
}

.geo-offer-alt__description p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: 'Roboto', sans-serif; 
}

.geo-offer-alt__actions {
  margin-top: 40px;
  margin-bottom: 25px;
}

.geo-offer-alt__btn {
  display: inline-block;
  padding: 14px 28px;
  background: #f57c00;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.geo-offer-alt__btn:hover {
  background: #dc6f01;
}

.geo-offer-alt__contacts {
  margin-top: 10px;
}

.geo-offer-alt__contact {
  font-size: 16px;
  margin-bottom: 8px;
}

.geo-offer-alt__contact a {
  color: #000;
  text-decoration: none;
}

.geo-offer-alt__contact a:hover {
  text-decoration: underline;
}

/* ===== 1080px ===== */
@media (max-width: 1080px) {
  .geo-offer-alt__description p {
    font-size: 16px;
  }
}

/* ===== 768px ===== */
@media (max-width: 768px) {
  .geo-offer-alt {
    flex-direction: column;
  }

  .geo-offer-alt__text,
  .geo-offer-alt__image {
    width: 100%;
  }
}

/* ===== 480px ===== */
@media (max-width: 480px) {
  .geo-offer-alt__description p {
    font-size: 15px;
    line-height: 1.5;
  }

  .geo-offer-alt__btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
  }

  .geo-offer-alt__contact {
    font-size: 15px;
  }
}

.page-title {
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #1e1e1e;
  text-transform: uppercase;
}

.page-title span {
  display: inline-block;
  color: #f57c00;
  font-weight: 800;
  margin-top: 6px;
}

.geo-description p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #444;
  max-width: 520px;
  text-align: justify;
  margin-left: 20px;

}

.geo-image {
  flex: 1;
  text-align: center;

}

.geo-image img {
  max-width: 70%;
  height: auto;
 
}

/* ===== 1080px ===== */
@media (max-width: 1080px) {
  .page-title {
    font-size: 2em;
  }

  .geo-description p {
    font-size: 1em;
    margin: 30px 20px;
   
  }
}

/* ===== 768px ===== */
@media (max-width: 768px) {
  .geo-offer {
    flex-direction: column;
    text-align: center;
  }

  .geo-image {
    text-align: center;
  }

  .geo-description p {
    max-width: 100%;
  }
}

/* ===== 480px ===== */
@media (max-width: 480px) {
  .page-title {
    font-size: 1.6em;
    text-align: center;
  }

  .geo-description p {
    font-size: 0.95em;
    margin-top: 25px;
  }
}
/* Общий контейнер для сетки товаров */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 3 карточки в ряд, адаптивно */
    gap: 40px; /* Расстояние между карточками */
    padding: 20px;
    max-width: 1200px; /* Максимальная ширина сетки */
    margin: 50px auto; /* Центрирование сетки */
    box-sizing: border-box;

}

/* Стили для отдельной карточки товара */
.product-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); /* Легкая тень */
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Плавный переход для поднятия */
    cursor: pointer; /* Указываем, что элемент интерактивный */
}

/* Эффект поднятия при наведении */
.product-card:hover {
    transform: translateY(-5px); /* Поднимаем карточку на 5px вверх */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Усиливаем тень */
}

/* Стили для изображения товара */
.product-image {
    width: 100%;
    height: 180px; /* Фиксированная высота для единообразия */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden; /* Обрезаем, если изображение выходит за рамки */
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Сохраняет пропорции, вписывая изображение */
}

/* Стили для блока характеристик/преимуществ */
.product-features {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Расстояние между элементами "Быстрая доставка", "Характеристики" */
}

.product-features span {
    white-space: nowrap; /* Чтобы текст не переносился */
}

/* Стили для заголовка товара */

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    display: -webkit-box;
    
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}
/* Стили для цены */
.product-price {
    font-size: 1.4em;
    text-align: left;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px; /* Уменьшаем отступ снизу, чтобы сократить расстояние до кнопок */
    margin-top: 0; /* Убедимся, что нет верхнего отступа, который бы добавлял расстояние */
}
/* Стили для кнопок */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px; /* Уменьшаем отступ сверху, чтобы кнопки были ближе к цене */
    /* Было auto, теперь фиксированное значение.
       Это может повлиять на прижатие кнопок к низу,
       если содержимое карточки очень сильно меняется по высоте.
       Если карточки должны быть фиксированной высоты,
       можно использовать padding-bottom для .product-card вместо этого margin. */
}

.btns {
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
    flex-grow: 1; /* Кнопки будут равномерно растягиваться */
    text-align: center;
    text-decoration: none;
}

.buy-btn {
    background-color: #ff8c00; /* Оранжевый цвет */
    color: #fff;
    border: 1px solid #ff8c00;
}

.buy-btn:hover {
    background-color: #e07b00;
    border-color: #e07b00;
}

.price-btn {
    background-color: #fff;
    color: #ff8c00; /* Оранжевый цвет текста */
    border: 1px solid #ff8c00;
    transition: 0.2s;
}

.price-btn:hover {
  background-color:  #ff8c00;
  color: white;
  
}



/* Медиа-запросы для адаптивности (если нужно) */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Меньше колонок на узких экранах */
    }
}

@media (max-width: 480px) {
    .product-actions {
        flex-direction: column; /* Кнопки одна под другой на очень узких экранах */
    }
    .product-card {
        padding: 10px;
    }
}
/* ... (весь предыдущий CSS код) ... */

/* Контейнер для тултипа, устанавливаем относительное позиционирование */
.features-tooltip-container {
    position: relative;
    display: inline-block; /* Чтобы span занимал только необходимую ширину */
    cursor: help; /* Меняем курсор на "помощь" */
}

/* Стили для самого всплывающего окна (тултипа) */
.features-tooltip {
    visibility: hidden; /* Скрываем по умолчанию */
    opacity: 0; /* Делаем его невидимым по умолчанию */
    width: 330px; /* Ширина всплывающего окна */
    background-color: #333; /* Темный фон */
    color: #fff; /* Белый текст */
    text-align: left; /* Выравнивание текста внутри */
    border-radius: 6px; /* Закругленные углы */
    padding: 10px;
    position: absolute; /* Абсолютное позиционирование */
    z-index: 100; /* Чтобы был поверх других элементов */
    bottom: 125%; /* Располагаем над элементом "Характеристики" */
    left: 50%;
    margin-left: -100px; /* Центрируем по горизонтали (половина ширины) */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Легкая тень */
    transition: opacity 0.3s ease; /* Плавное появление */
}

/* Стрелочка внизу всплывающего окна */
.features-tooltip::after {
    content: "";
    position: absolute;
    top: 100%; /* Располагаем внизу тултипа */
    left: 50%;
    margin-left: -5px; /* Центрируем стрелку */
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent; /* Цвет стрелки совпадает с фоном тултипа */
}

/* Стили для списка внутри тултипа */
.features-tooltip ul {
    list-style: none; /* Убираем стандартные маркеры списка */
    padding: 0;
    margin: 0;
}

.features-tooltip li {
    padding: 3px 0;
    font-size: 13px;
    white-space: normal; /* Разрешаем перенос текста */
}


/* Появление тултипа при наведении на контейнер */
.features-tooltip-container:hover .features-tooltip {
    visibility: visible; /* Делаем видимым */
    opacity: 1; /* Полностью показываем */
}

/* Если хотите, чтобы текст "Характеристики" был другого цвета, когда тултип активен */
.features-tooltip-container:hover {
    color: #ff8c00; /* Пример: оранжевый цвет текста "Характеристики" */
}

/* Остальные стили для .product-features, если они есть, могут быть такими: */
.product-features {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px; /* Уменьшен отступ, как мы делали ранее */
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 768px) {
    .features-tooltip {
        width: 260px;
        margin-left: -130px;
        padding: 8px;
    }

    .features-tooltip li {
        font-size: 12px;
    }

    .features-tooltip::after {
        margin-left: -4px;
    }
}


/* ============================== */
/*        📱 480px (PHONE)        */
/* ============================== */
@media (max-width: 480px) {
    .features-tooltip {
        width: 230px;
        margin-left: -110px;
        padding: 7px;
        font-size: 10px;
        bottom: 115%; /* чтобы не выходил за экран */
    }

    .features-tooltip li {
        font-size: 11px;
    }

    .features-tooltip::after {
        margin-left: -4px;
        border-width: 4px;
    }

    .product-features {
        font-size: 12px;
        gap: 6px;
    }
}

.breadcrumbs-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

/* Хлебные крошки */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: #6b6b6b;
}

.breadcrumbs a {
  color: #1e1e1e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #f57c00;
}

.breadcrumbs .separator {
  margin: 0 8px;
  color: #b0b0b0;
}

.breadcrumbs .current {
  color: #9e9e9e;
  cursor: default;
}

/* Правая часть */
.breadcrumbs-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  white-space: nowrap;
}

/* Обычные ссылки */
.breadcrumbs-actions a {
  color: #2a2a2a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-actions a:hover {
  color: #f57c00;
}

/* Разделители между ссылками (визуальный ритм) */
.breadcrumbs-actions a:not(.cta)::after {
  content: "•";
  margin-left: 16px;
  color: #c0c0c0;
}

.breadcrumbs-actions a:not(.cta):last-of-type::after {
  content: "";
  margin: 0;
}

/* CTA-кнопка */
.breadcrumbs-actions .cta {
  margin-left: 8px;
  padding: 6px 14px;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  background: transparent;
  color: #1e1e1e;
  font-weight: 500;
  line-height: 1.2;
  transition: all 0.25s ease;
}

/* Hover CTA */
.breadcrumbs-actions .cta:hover {
  background: #f57c00;
  border-color: #f57c00;
  color: #ffffff;
}

@media (max-width: 480px) {
  .breadcrumbs-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  .breadcrumbs {
    font-size: 12px;
  }

 .breadcrumbs-actions {
    display: none;
  }

  .breadcrumbs-actions .cta {
    padding: 8px 14px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .breadcrumbs-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .breadcrumbs {
    font-size: 13px;
  }
  

  .breadcrumbs-actions {
    display: none;
  }
}
@media (max-width: 1080px) {
  .breadcrumbs {
    font-size: 13px;
  }

  .breadcrumbs-actions {
    gap: 14px;
    font-size: 14px;
  }

  .breadcrumbs-actions .cta {
    padding: 6px 10px;
  }
}


.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* максимум 3 элемента в ряд */
  gap: 80px;
  padding: 50px 80px;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
  background-color: #ffffff;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
 

}

.service-item img {
  width: 50px;
  height: 50px;
}

/* .icon {
  border: 2px solid #000000;
  background-color: none;
  border-radius: 3px;
  padding: 12px;
  font-size: 28px;
  flex-shrink: 0;
} */

.text-block h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #000;
}

.text-block p {
  font-size: 1em;

  margin: 0;
  line-height: 1.4;
  color: #555;
    font-weight: 300;
}
/* ---------- 📱 АДАПТАЦИЯ ---------- */

/* До 1080px — немного уменьшаем отступы и промежутки */
@media (max-width: 1080px) {
  .services {
    grid-template-columns: repeat(2, 1fr); /* 2 элемента в ряд */
    gap: 60px;
    padding: 40px 60px;
  }

  .text-block h3 {
    font-size: 1.1em;
  }

  .text-block p {
    font-size: 0.95em;
  }
}

/* До 768px — планшеты */
@media (max-width: 768px) {
   .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    gap: 20px;
    margin-left: -10px;
    margin-top: 40px;
  }

  .service-item img {
    width: 35px;
    height: 35px;
  }

  .text-block h3 {
    font-size: 1em;
  }

  .text-block p {
    font-size: 0.9em;
  }
}

/* До 480px — мобильные устройства */
@media (max-width: 480px) {
  .services {
    grid-template-columns: 1fr; /* один элемент в ряд */
    gap: 30px;
    padding: 20px;
    margin-top: 25px;
  }

  .service-item {
    gap: 15px;
  }

  .service-item img {
    width: 40px;
    height: 40px;
  }

  .text-block h3 {
    font-size: 0.95em;
  }

  .text-block p {
    font-size: 0.85em;
  }
}

/* Контейнер */
.reasons-to-buy .use-cases {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}
.geo-image-two {
  display: flex;
  justify-content: center; /* по горизонтали */
  align-items: center;     /* по вертикали (если есть высота) */
}

.geo-image-two img {
  width: 50%;
  height: auto;
}
@media (max-width: 1080px) {
  .geo-image-two img {
    width: 55%;
  }
}
@media (max-width: 768px) {
  .geo-image-two {
    margin-top: 20px;
  }

  .geo-image-two img {
    width: 65%;
  }
}

@media (max-width: 480px) {
  .geo-image-two img {
    width: 80%;
  }
}
@media (max-width: 380px) {
  .geo-image-two img {
    width: 95%;
  }
}


/* Список */
.reasons-to-buy .use-cases ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Пункты */
.reasons-to-buy .use-cases li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  background: #f7f7f7;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.4;
}

/* Галочка */
.reasons-to-buy .use-cases li::before {
  content: "✓";
  color: #e63946;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .reasons-to-buy .use-cases {
    margin: 50px auto;
  }

  .reasons-to-buy .use-cases ul {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .reasons-to-buy .use-cases {
    margin: 40px auto;
  }

  .reasons-to-buy .use-cases ul {
    grid-template-columns: 1fr;
  }

  .reasons-to-buy .use-cases li {
    font-size: 15px;
    padding: 16px 18px;
  }
}
@media (max-width: 480px) {
  .reasons-to-buy .use-cases {
    margin: 30px auto;
    padding: 0 15px;
  }

  .reasons-to-buy .use-cases li {
    font-size: 14px;
    padding: 14px 16px;
    border-radius: 10px;
  }
}
@media (max-width: 385px) {

  /* Контейнеры */
  .container {
    width: 100%;
    padding: 15px;
    margin: 70px auto;
  }

  /* SERVICES */
  .services {
    padding: 15px;
    max-width: 100%;
  }

  /* PRODUCTS */
  .products-grid {
    padding: 10px;
    gap: 20px;
  }

  /* GEO */
  .geo-description p {
    margin-left: 0;
    max-width: 100%;
    text-align: left;
  }

  /* TITLES */
  .always-title,
  .always-carousel {
    margin-left: 0 !important;
    padding-left: 12px;
  }

  /* TOOLTIP  */
  .features-tooltip {
    width: 220px;
    left: 0;
    margin-left: -100px;
    right: auto;
  }

  /* UL / LI */
  ul {
    padding-left: 0;
  }

  /* Любые flex-блоки */
  .geo-offer,
  .footer-container,
  .steps-container {
    max-width: 100%;
  }

   .faq-section{
       padding: 20px;
   }
   .faq-title{
       font-size: 1.2em;
       margin-bottom: 25px;
   }
   .faq-question{
       font-size: 1em;
   }
   .faq-answer{
       font-size: 1em;
       
   }
}
/* ===== БАЗОВАЯ КНОПКА ===== */
.tg-question-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;

  display: flex;
  align-items: center;
  gap: 10px;

  background-color: #0088cc;
  color: #fff;

  padding: 14px 18px;
  border-radius: 50px;

  font-family: Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;

  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* появление */
.tg-question-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== ИКОНКА ===== */
.tg-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tg-icon img {
  width: 100%;
  height: 100%;
  display: block;
    transition: transform 0.3s ease;
}

/* ===== ТЕКСТ ===== */
.tg-text {
  white-space: nowrap;
}

/* Поворот иконки при hover */
@media (hover: hover) {
  .tg-question-btn:hover .tg-icon img {
    transform: rotate(-12deg) scale(1.05);
  }
}

/* ===== HOVER (desktop) ===== */
@media (hover: hover) {
  .tg-question-btn:hover {
    background-color: #0095e6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
}

/* ================================================= */
/* ===== MOBILE ≤ 480px : ИДЕАЛЬНЫЙ КРУГ ===== */
/* ================================================= */

@media (max-width: 480px) {

  .tg-question-btn {
    right: 14px;
    bottom: 14px;

    width: 56px;
    height: 56px;
    padding: 0;

    border-radius: 50%;

    justify-content: center;
  }

  .tg-text {
    display: none;
  }

  .tg-icon {
    width: 20px;
    height: 20px;
  }
}
/* Правая сторона */
.about-right {
    margin-left: 50px;
}

.about h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Общий текст */
.about p {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 25px;
}

/* Стиль текста отдельно */
.about-right p,
.about-right li,
.about-left p,
.about-left li {
    font-weight: 300;
    text-align: justify;
}

/* Изображения */
.about-img {
    width: 85%;
    border-radius: 3px;
    margin-top: 40px;
}

.about-img-small {
    width: 70%;
    border-radius: 3px;
    margin-bottom: 25px;
}

/* Список с галочками */
.about-list {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

.about-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 30px;
    font-size: 1em;
    font-weight: 200;
    text-align: justify;
}

.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #d67b31;
    font-size: 18px;
}

/* Кнопка */
.about-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #ff7a00;
    font-size: 1em;
    text-decoration: none;
    color: #ffffff;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 300;
}

.about-btn:hover {
    background: #d67b31;
    color: #fff;
}

/* ===========================
   1080px — ноутбуки
=========================== */
@media (max-width: 1080px) {
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 50px!important;
    }

    .about-right {
        margin-left: 0;
    }

    .about-img {
    width: 60%;
    margin: 20px auto 0; /* auto — центрирует */
    display: block;       /* делает margin auto рабочим */
        
    }

    .about-img-small {
        width: 60%;
        margin: 0 auto 20px;
        display: block;
    }

    .about h2 {
        font-size: 40px;
    }

    .about p,
    .about-list li {
        font-size: 17px;
        text-align: justify;
    }
}

/* ===========================
   768px — планшеты
=========================== */
@media (max-width: 768px) {
    .about {
        padding: 40px 15px;
        gap: 30px;
    }

     .about-img {
      width: 400px;
     }

    .about h2 {
        font-size: 34px;
    }

    .about p,
    .about-list li {
        font-size: 16px;
    }

    .about-img-small {
        width: 75%;
    }

    .about-btn {
        padding: 12px 32px;
        font-size: 0.95em;
    }
}

/* ===========================
   480px — мобильные
=========================== */
@media (max-width: 480px) {
    .about {
        padding: 35px 20px;
        gap: 25px;
    }

    .about h2 {
        font-size: 28px;
        line-height: 1.2;
        text-align: left;
    }

    .about p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .about-img,
    .about-img-small {
        width: 100%;
    }

    .about-list li {
        font-size: 15px;
        padding-left: 26px;
    }

    .about-btn {
        width: 100%;
        padding: 14px 0;
        font-size: 1em;
        text-align: center;
    }
}

/* ===========================
   ВИДЕО-БЛОК
=========================== */

/* Внешний контейнер секции */
.video-section {
  max-width: 1200px;
  margin: 80px auto;           /* ОТСТУП СВЕРХУ И СНИЗУ */
  padding: 0 20px;
}

/* Сетка видео */
.video-grid {
  display: flex;
  margin-top: 50px;
  margin-bottom: 80px;
  gap: 24px;
  justify-content: center;     /* ПО ЦЕНТРУ */
  flex-wrap: wrap;
}

/* Один видеоблок */
.video-wrapper {
  position: relative;
  width: 48%;
  height: 320px;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}

/* Превью */
.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Видео (скрыто до клика) */
.video-wrapper video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ВАЖНО: чёрные поля для вертикальных видео */
  background: #000;
}

/* КНОПКА PLAY — ИДЕАЛЬНЫЙ ЦЕНТР */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

/* Треугольник Play */
.play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 18px 0 18px 30px;
  border-color: transparent transparent transparent #ffffff;
}

/* ===========================
   АДАПТИВ
=========================== */

@media (max-width: 1024px) {
  .video-wrapper {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .video-wrapper {
    width: 100%;
    height: 260px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .play-btn::before {
    border-width: 14px 0 14px 22px;
  }
}

@media (max-width: 480px) {
  .video-wrapper {
    height: 220px;
  }
}
.link_faq {
  text-decoration: none;
  color:#e07b00;
}

.cta-region {
  margin: 40px 0;
  padding: 30px;
  background: #f5f5f5;
  border-left: 4px solid #2b2b2b;
  border-radius: 6px;
}

.cta-region__content {
  max-width: 900px;
}

.cta-region__text {
  font-size: 16px;
  line-height: 1.6;
  color: #1f1f1f;
  margin-bottom: 15px;
}

.cta-region__text strong {
  color: #000;
}

.cta-region__actions {
  margin-top: 20px;
}

.cta-region__btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #2b2b2b;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta-region__btn:hover {
  background-color:#f57c00;
}

/* 📱 Mobile adaptation */
@media (max-width: 768px) {
  .cta-region {
    padding: 20px;
    margin: 30px 0;
  }

  .cta-region__text {
    font-size: 15px;
  }

  .cta-region__btn {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .cta-region {
    padding: 16px;
    border-left-width: 3px;
  }

  .cta-region__text {
    font-size: 14.5px;
    line-height: 1.5;
  }
}
.order-steps {
  margin: 20px 0 30px;
  padding-left: 20px;
}

.order-steps li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #2b2b2b;
}


/* ===== Use cases with images ===== */
.use-cases {
  margin: 60px 0;
  padding: 40px;
  background: #f8f9fb;
  border-radius: 16px;
}

.use-cases h2 {
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
}

.use-cases-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.use-case-item {
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-case-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.use-case-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.use-case-item p {
  padding: 18px 20px 22px;
  font-size: 16px;
  line-height: 1.5;
  color: #374151;
  margin: 0;
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
  .use-cases {
    padding: 32px;
  }

  .use-cases-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-cases h2 {
    font-size: 24px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 640px) {
  .use-cases {
    padding: 24px 20px;
    margin: 40px 0;
  }

  .use-cases-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .use-case-item img {
    height: 160px;
  }

  .use-cases h2 {
    font-size: 22px;
  }

  .use-case-item p {
    font-size: 15px;
    padding: 16px 16px 18px;
  }
}



.video-platforms {
  padding: 60px 20px;

}

.video-platforms__container {
  max-width: 1200px;
  margin: 0 auto;
}

.video-platforms__title {
  font-size: 32px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 16px;
}

.video-platforms__text {
  font-size: 16px;
  color: #555;
 
  margin-bottom: 32px;
}

.video-platforms__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-platforms__item {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  color: #1c1c1c;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-platforms__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.video-platforms__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.video-platforms__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.video-platforms__desc {
  font-size: 14px;
  color: #666;
}

/* Цветовые акценты */
.video-platforms__item.rutube {
  border-left: 5px solid #000000;
}

.video-platforms__item.vk {
  border-left: 5px solid #000000;
}

/* ===== Адаптация ===== */

/* 1080px */
@media (max-width: 1080px) {
  .video-platforms__title {
    font-size: 28px;
  }
}

/* 760px */
@media (max-width: 760px) {
  .video-platforms__links {
    grid-template-columns: 1fr;
  }

  .video-platforms__title {
    font-size: 24px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .video-platforms {
    padding: 40px 16px;
  }

  .video-platforms__item {
    padding: 20px;
  }

  .video-platforms__name {
    font-size: 18px;
  }
}
.delivery-support {
    background-color: #ffffff;
    padding: 50px 20px;
    border-radius: 12px;
    margin: 40px 0;
}

.delivery-support h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.delivery-support p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.delivery-support ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-support ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #374151;
}

.delivery-support ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color:#e07b00;
    font-weight: bold;
}



.catalog-link {
    margin-bottom: 50px;
    text-align: center;
}

.catalog-link a {
    color: #3d3d3d;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.catalog-link a:hover {
    color: #000000;
}

.contacts-section {
  padding: 40px 0 80px;
  background: #fff;
  margin-left: 40px;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

.contacts-title {
  font-size: 36px;
  margin-left: 40px;
  margin-bottom: 40px;
  font-weight: 700;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; /* расстояние как на макете */
  max-width: 1400px;
  margin-left: 40px;
  align-items: start;
}

/* КАРТА */
.map-placeholder {
  width: 600px;
  height: 400px;
  position: relative;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
}

/* ПРАВАЯ КОЛОНКА */
.right-info {
  display: flex;
  flex-direction: column;
  gap: 40px; /* расстояние между блоками */
}

/* CONTACT INFO */
.contact-title {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-info p {
  margin: 5px 0 15px;
  font-size: 1.2em;
  line-height: 1.5em;
}

.contact-phone {
  font-weight: 500;
}

.contact-email {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.contact-email:hover {
  color: #f57c00;
}

/* КНОПКИ */
.contact-buttons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 25px;
  font-size: 1em;
  font-weight: 500;
  border-radius: 3px;
  text-decoration: none;
  border: 2px solid #f57c00;
  color: #f57c00;
}

.whatsapp-btn {
  background: #f57c00;
  color: white;
  border-color: #f57c00;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #e67301;
  border-color: #e67301;
}

.question-btn {
  transition: 0.3s;
}

.question-btn:hover {
  background: #f57c00;
  border-color: #f57c00;
  color: white;
}


/* ПРЕДСТАВИТЕЛЬ */
.representetive .rep-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.rep-link img {
  vertical-align: middle;
  margin-right: 8px;
}

.rep-link a {
  font-size: 18px;
  color: black;
  text-decoration: none;
}

.rep-link a:hover {
  color: #f57c00;
}


/* --------------------------------------- */
/*        АДАПТАЦИЯ ДО 1080px              */
/* --------------------------------------- */
@media (max-width: 1080px) {

  .contacts-grid {
    grid-template-columns: 1fr; /* одна колонка */
    margin-left: 20px;
  }

  .map-placeholder {
    width: 100%;
    height: 350px;
  }

  .contacts-title {
    margin-left: 20px;
  }
}

/* --------------------------------------- */
/*        АДАПТАЦИЯ ДО 768px               */
/* --------------------------------------- */
/* --------------------------------------- */
/*        АДАПТАЦИЯ ДО 768px               */
/* --------------------------------------- */
@media (max-width: 768px) {

  .contacts-section {
    margin-left: 20px; /* ОТСТУП СЛЕВА */
    padding: 30px 0 60px;
  }

  .contact-title {
    font-size: 1.5em; 
   }

  .contacts-title {
    margin-left: 20px; /* ОТСТУП СЛЕВА */
    text-align: left;
  }

  .contacts-grid {
    margin-left: 20px; /* ОТСТУП СЛЕВА */
  }
}

/* --------------------------------------- */
/*        АДАПТАЦИЯ ДО 480px               */
/* --------------------------------------- */
@media (max-width: 480px) {

  .contacts-section {
    margin-left: 15px; /* НЕМНОГО МЕНЬШЕ НА СОВСЕМ МАЛЕНЬКОМ ЭКРАНЕ */
    padding: 20px 0 40px;
  }

  .contacts-title {
    margin-left: 15px; /* ОТСТУП СЛЕВА */
  }
  
  .contact-info  {
    font-size: 0.9em;
  }
  .contacts-grid {
    margin-left: 15px; /* ОТСТУП СЛЕВА */
  }
}


.features-block {
  margin: 50px 0;
}

.features-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.features-content {
  flex: 1;
}

.features-image {
  flex: 1;
}

.features-image img {
  width: 100%;
  border-radius: 3px;
  object-fit: cover;
}

.features-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.features-text {
  color: #4b5563;
  margin-bottom: 25px;
  line-height: 1.6;
}

.features-item {
  margin-bottom: 18px;
}

.features-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.features-item a {
  color: #454545;
  text-decoration: none;
}

.features-item a::after {
  content: " →";
  transition: 0.3s;
}

.features-item a:hover::after {
  margin-left: 5px;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .features-wrapper {
    flex-direction: column;
  }
}