body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: #fff;
  color: #333;
}
/* Базовые стили */
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 {
background: transparent; /* прозрачный фон */
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 100;
padding: 20px 0;
}


.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* Позволяет элементам переноситься при нехватке места */
  gap: 20px;
}
  
  .nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  
  
}

.logo img {
height: 80px;
}

.nav__menu {
list-style: none;
display: flex;
gap: 30px;
margin: 0;
padding: 0;
}

.nav__menu li a {
text-decoration: none;
color: white;
font-weight: 500;
font-size: 16px;
}

.header__right {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 20px; /* отступ между языками и кнопкой */
flex-wrap: nowrap;
}

.nav__lang a {
color: white;
text-decoration: none;
margin: 0 5px;
font-size: 14px;
}
.hero__title {
font-size: 80px;
font-weight: bold;
color: white;
margin-bottom: 10px;
}
.hero__subtitle {
font-size: 16px;
font-weight: 400;
color: white;
margin-bottom: 40; /* или 20px, если нужно плотнее */
}
.nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  white-space: nowrap;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  max-width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.nav__btn:hover {
background-color: white;
color: #13751E;
}

.btn-icon {
width: 16px;
height: 16px;
filter: invert(1);
}

.hero {
display:flex; 
background: url('../img/hero-bg.webp') no-repeat center center;
background-size: cover;
height: 700px;
position: relative;
color: white;
}

.hero::after {
content: "";
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.5); /* затемнение */
z-index: 1;
}
/* Hero block */
.hero--products {
position: relative; /* обязательно! */

background: url("../img/new-hero.png") no-repeat center center;
background-size: cover;
  height: 500px;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  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: 48px;
    color: white;
    font-weight: bold;
    position: relative;
    z-index: 2; /* чтобы было поверх затемнения */
}

/* ОБЁМНАЯ ПЛАШКА */
.product-tile {
    max-width: 1100px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
  }
  
  .product-tile__image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: 12px 12px 0 0;
  }
  
  .product-tile__overlay {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
  }
  
  .product-tile__title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: white;
  }
  
  .tile-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  
  .tile-toggle img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
  }
  
  .product-tile.open .tile-toggle img {
    transform: rotate(90deg);
  }
  
  .product-subcards {
    display: none;
    padding: 40px 20px;
    background: transparent;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    animation: fadein 0.4s ease;
  }
  
  @keyframes fadein {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .product-tile.open .product-subcards {
    display: flex;
  }
  
  .product-item {
    width: 250px;
    height: 300px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .product-item:hover {
    transform: translateY(-5px);
  }
  
  .product-item img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 10px;
  }
  
  .product-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
  }
  .tile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
  .tile-toggle img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
  }
  .product-tile.open .tile-toggle img {
    transform: rotate(90deg);
  }
  
   .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; /* Светло-зеленый для эффекта наведения */
}
  /* Green Line */
.product-sections::before {
  content: "";
  position: absolute;
  top: -100;
  left: 40px; /* отступ от левого края */
  width: 2px; /* толщина */
  height: 100%;
  background-color: #12500f; /* зелёный */
}
.product-link-arrow {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-block;
    width: 32px;
    height: 32px;
    transition: filter 0.3s ease, transform 0.2s ease;
  }
  
  .product-link-arrow img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  /* Подсветка при наведении */
  .product-link-arrow:hover {
    filter: brightness(1.5);
    transform: scale(1.15);
  }
  
  /* Анимация при клике */
  .product-link-arrow:active img {
    transform: scale(0.9);
  }
  /* Сетка для карточек под плашкой */
.product-subcards {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    background: transparent;
  }
  
  /* Каждая карточка */
  .product-item {
    position: relative;
    width: 300px;
    height: 320px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /* Картинка */
  .product-item img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 10px;
  }
  
  /* Подпись */
  .product-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #333;
  }
  
  /* Стрелка-ссылка */
  .product-item .product-link-arrow {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-block;
    width: 32px;
    height: 32px;
  }
  
  .product-item .product-link-arrow img {
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease;
  }
  
  .product-item .product-link-arrow:hover img {
    transform: scale(1.2);
  }
/* Mobile Burger Menu */
@media (max-width: 768px) {
  .burger-menu {
    display: block;
    position: absolute;
    top: 25px;
    right: 20px;
    font-size: 28px;
    color: white;
    z-index: 1001;
    cursor: pointer;
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 10px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    z-index: 1000;
  }

  .nav.active {
    display: block;
  }

  .nav__menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav__menu li a {
    color: #13751E;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
  }

  .nav__lang {
    margin-top: 10px;
    font-size: 14px;
    text-align: right;
  }

  .nav__btn {
    display: none; /* Скрываем кнопку связи на мобилке */
  }
}

/* Desktop: показываем обычную навигацию */
@media (min-width: 769px) {
  .burger-menu {
    display: none;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .nav__menu {
    display: flex;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .nav__lang {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 40px;
    text-align: center;
  }
}
