body {
 
  margin: 0;
  padding-top: 0px; 
  font-family: 'Manrope', sans-serif;
  color: #333;
  background-color: #fff;
}


.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
}

.logo img {
  height: 80px;
  display: block;
}

burger-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 1000;
}
.nav__menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav__menu li a {
  color: white;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.nav__menu li a:hover,
.nav__menu li a.active {
  color: #80C342;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav__lang {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  align-items: center;
  margin: 0;         /* убираем отступы */
  padding: 0;        /* убираем отступы */
  position: static;  /* обязательно, если было absolute */
}

.nav__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}


.nav__lang {
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    align-items: center;
    z-index: 1000;
    margin-right: 15px;
}

.nav__lang a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0 5px;
}

.nav__lang a.active {
    font-weight: bold;
    color: #80C342;
}
.header__container {
  align-items: center;
}

/* Для мобильной версии */
@media (max-width: 768px) {
    .nav__lang {
        display: flex !important;
        margin-top: 15px;
        gap: 20px;
        justify-content: center;
    }
}

}

.nav__btn {
  padding: 10px 20px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  font-family: 'Manrope', sans-serif;
}


.nav__btn:hover {
  background-color: white;
  color: #13751E;
}

.hero {
  display: flex;
  background: url('../img/hero-bg.webp') no-repeat center center;
  background-size: cover;
  height: 60vh; 
  position: relative;
  color: white;
  align-items: center;      
  justify-content: center;  
  text-align: center;
}
.hero__content {
  z-index: 2;
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-size: 100px;         /* или 80px — по макету */
  text-align: left;
  display: block;
  width: 100%;
}



.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero--products {
  position: relative;
  background: url("../img/new-hero.png") no-repeat center center;
  background-size: cover;
  height: 400px;
  padding-left: 190px;       /* смещает контент влево */
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* выравнивание по левому краю */
  z-index: 1;
  overflow: hidden;
}



.hero--products::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-title {
  font-size: 64px;         /* чуть меньше, как в макете */
  font-weight: 500;        /* сделать тоньше */
  margin: 0;
  color: white;
}




  .contact-form {
    background-color: #ffffff;
    padding: 60px 20px;
    margin-top: 0
  }
  
  .contact-form__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .contact-form__title h2 {
  color: #13751E;
  font-size: 28px;
  font-weight: 400; 
  margin: 0;
  line-height: 1.2;
  text-align: left;
}
  .contact-form__fields {
    display: flex;
    flex: 1;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
  }
  
  .form-group label {
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
  }
  
  .form-group input {
    padding: 10px 15px;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    outline: none;
  }
  
  .submit-btn {
    background-color: #13751E;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
  }
  
  .submit-btn:hover {
    background-color: #0f5f18;
  }

  .footer {
    position: relative;
    background-color: #092810;
    color: white;
    padding-top: 0px; /* под SVG */
    padding-bottom: 30px;
    font-family: 'Manrope', sans-serif;
  }
  
  .footer-arc {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .footer-col h4 {
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .footer-col p {
    margin: 5px 0;
    font-size: 14px;
    color: #ccc;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
 .footer-col a {
    color: #fff;
    text-decoration: none;
}

.footer-col a:hover {
    color: #80C342; 
}
.product-detail {
  padding: 60px 20px;
  background-color: #fff;
}

/* Основные стили для десктопа */
.product-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  align-items: center;
}
/* Изображение продукта */
.product-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

/* Текстовый блок продукта */
.product-info {
  flex: 1 1 60%;
}
.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.product-info {
  flex: 1 1 50%;
}

.product-title {
  font-size: 28px;
  color: #002255;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-status {
  color: #28a745;
  font-weight: 600;
  margin-bottom: 20px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #28a745;
  border-radius: 50%;
  margin-right: 8px;
}


.product-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-uses li {
    margin-bottom: 10px;
    line-height: 1.5;
  }
.contact-section {
  padding: 60px 20px;
  background: #fff;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-text {
  flex: 1 1 40%;
}

.contact-text h2 {
  font-size: 40px;
  color: #13751E;
  margin-top: -200px; /* или меньшее значение */
  padding-top: -20px;
}

.contact-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.contact-card {
  flex: 1 1 50%;
  background: #f1f1f1;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}

.form-top-wave svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: block;
}

.form-fields {
  padding: 40px 30px;
}

.form-fields label {
  font-size: 13px;
  color: #555;
  display: block;
  margin-top: 20px;
}

.form-fields input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  padding: 10px;
  font-size: 14px;
  outline: none;
}

.form-fields button {
  margin-top: 30px;
  background-color: #13751E;
  color: white;
  padding: 14px 20px;
  font-size: 16px;
  border: none;
  width: auto;
  border-radius: 6px;
  cursor: pointer;
  width: 220px;     
  height: 45px;     
}

.form-fields button:hover {
  background-color: #0f5f18;
}
.contact-form {
  background-color: #f2f2f2;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 40px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-top {
  width: 100%;
  height: 50px;
  overflow: hidden;
  line-height: 0;
} 
.product-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
 
  padding: 10px;
  justify-content: center;
  margin-bottom: 60px;
}

.product-menu a {
  padding: 8px 14px;
  border: 1px solid black; 
  text-decoration: none;
  color: black;
  font-family: 'Manrope', sans-serif;
  transition: all 0.3s ease;
  background-color: white;
  font-weight: 500; /* Задать изначально */
  display: inline-block;
  min-height: 25px; /* или равное значение всем */
}

.product-menu a:hover,
.product-menu a.active {
  color: #0a7c24;
  border-color: #0a7c24;
}
.product-menu a.active {
  color: #13751E;
  border-color: #13751E;
}

/* Мобильная адаптация */
/* Мобильная адаптация */
@media (max-width: 768px) {
  .main-header .nav,
  .main-header .header__right {
      display: none;
  }

  .burger-menu {
      display: block;
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 28px;
      cursor: pointer;
      z-index: 1000;
  }

  .burger-menu.active + .nav {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      background-color: white;
      padding: 20px;
      border-radius: 0 0 10px 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 999;
  }

  .nav__menu {
      flex-direction: column;
      gap: 15px;
  }

  .nav__menu li a {
      font-size: 18px;
      color: #13751E;
  }

  .main-header .logo {
      padding-left: 15px;
  }

  .hero--products {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0;
      text-align: center;
      background-position: center center;
      padding-left: 0 !important; /* Отключаем смещение влево */
  }

  .hero-title {
      font-size: 36px;
      text-align: center;
      margin: 0;
      padding: 0;
      width: 100%;
      line-height: 1.2;
      color: #ffffff;
      text-transform: uppercase;
      z-index: 2;
  }

  .container.header__container {
      flex-direction: row;
      align-items: center;
      padding: 0 15px;
      justify-content: space-between;
  }

  .nav__lang {
      display: none;
  }
  @media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 20px;
    }
  
    .product-image {
        width: 100%;
        margin-bottom: 20px;
    }
  
    .product-info {
        width: 100%;
    }
  
    .product-title {
        font-size: 24px;
        text-align: center;
    }
  
    .product-description,
    .product-status {
        font-size: 14px;
        text-align: center;
    }
  
    .product-info ul {
        padding: 0 20px;
    }
  } 
  .footer {
    position: relative;
    background-color: #092810;
    color: white;
    padding-top: 0px; /* под SVG */
    padding-bottom: 30px;
    font-family: 'Manrope', sans-serif;
  }
  
  .footer-arc {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .footer-col h4 {
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .footer-col p {
    margin: 5px 0;
    font-size: 14px;
    color: #ccc;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
  }
.footer-col a {
    color: #fff !important;
    text-decoration: none;
}

.footer-col a:hover {
    color: #80C342 !important; 
}

.product-sections::before {
  content: "";
  position: absolute;
  top: -100;
  left: 40px; 
  width: 2px; 
  height: 100%;
  background-color: #12500f; 
} 


