/* inter-regular - cyrillic */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/inter-v20-cyrillic-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - cyrillic */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/inter-v20-cyrillic-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif !important;
}

body {
    font-family: 'Inter', sans-serif;
    padding: 0;
    background: url('/images/back-site.jpg');
}
.site p{
  color: #50382D;
}
.site a:hover, .site a:focus, .site a:active {
  color: inherit;
  text-decoration: none;
  color: rgb(92, 184, 92);
  transition: 0.5s;
}

.site h1 {
  overflow-wrap: anywhere;
}

/* Header */
.site .header {
    background-color: rgba(51, 51, 51, 0.9);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.site .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.site .container-modules {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.site .header-container-wrap {
  padding: 15px 10px;
  border-bottom: 1px solid rgba(200,200,200, 0.4);
}


.site .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site .logo {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
}

.site .nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.site .nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.site .nav a:hover {
    opacity: 0.8;
}

.site .contacts {
    text-align: right;
}

.site .phone {
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-bottom: 0px;
}

.site .header-hero-wrapper .email {
    font-size: 14px;
    margin-top: -4px;
    color: #CCCCCC;
    position: relative;
    top: -5px;
    border-bottom: 1px dotted #ccc;
}
.site #contacts .email {
    
    
    border-bottom: 1px dotted #454545;
}



/* Фон только на главной */
/*.site .header-hero-wrapper.is-home {
    background: url('/images/back.jpg') no-repeat center top;
    background-size: cover;
}*/
.is-home {
  background: #91683A;
  /*background: url('/images/back1.jpg') no-repeat center top;*/
  /*  background-size: cover;*/
}
.site .header-hero-wrapper .hero-video{
  display: none;
}
.site .header-hero-wrapper.is-home .hero-video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.header-hero-wrapper {
  position: relative;
}

.site .header-hero-wrapper.prods {
    background: rgba(30,30,30,0.8);
    background-size: cover;
}

/* Header на всех страницах */
.site .header {
    background-color: rgba(51, 51, 51, 0.9);
}

.site .header-container a:hover, .header-container, header a:focus, .header-container, header a:active {
  color: rgb(92, 184, 92);
  text-decoration: none;
}

/* Hero Section */
.site .hero {
    
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    position: relative;
}




  
.site .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    width: 100%;
}

.site .hero-content {
    max-width: 800px;
}

.site .hero h1 {
    color: #fff;
    font-size: 61px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.site .features {
    margin-bottom: 50px;
}

.site .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #eee;
    font-size: 20px;
}

.site .feature-item svg {
    flex-shrink: 0;
}

.site .checkmark {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site .checkmark::after {
    content: '✓';
    color: #5cb85c;
    font-size: 23px;
    font-weight: bold;
}

.site .cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.site .btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.site .btn-primary {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    
    font-weight:600;
    font-size:16px;
    color:#ffffff;
    background: linear-gradient(90deg, #437C3C 0%, #35712B 100%);
    box-shadow: 0 7px 18px rgba(0,0,0,0.51);
}

.site .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.55);
    text-decoration: none;
    color:#ffffff;
}

.site .btn-secondary {
    background-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.site .btn-secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
}


.site .container-block {
  margin: 50px 0;
  padding: 30px 0;
}







.site .section-title{
  text-align:center;
  font-size:44px;
  font-weight:700;
  color:#4a3a32;
  margin: 0 0 52px 0;
}



.site .about-card{
  background: rgba(255,255,255,0.92);
  border-radius: 14px;
  padding: 30px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* Левый фон */
.site .about-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width: 50%;
  height:100%;
  background: url('/images/about-left.jpg') no-repeat left bottom;
  background-size:contain;
  pointer-events:none;
}

/* Правый фон */
.site .about-card::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width: 50%;
  height:100%;
  background: url('/images/about-right.jpg') no-repeat right bottom;
  background-size:contain;
  
  pointer-events:none;
}

/* Чтобы текст был поверх */
.site .about-card > *{
  position:relative;
  z-index:1;
}

.site .about-grid{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 28px;
  align-items:start;
  margin-bottom: 22px;
}

.site .about-divider{
  width:1px;
  height:100%;
  background: rgba(0,0,0,0.08);
}

.site .about-col p{
  
  font-size:16px;
  line-height:1.65;
  margin: 0 0 14px 0;
}

.site .about-subtitle{
  font-weight:700;
  color:#4a3a32;
  margin: 2px 0 14px 0;
}

.site .about-list{
  list-style:none;
  padding:0;
  margin:0;
}

.site .about-list li{
  position:relative;
  padding-left:26px;
  margin: 0 0 12px 0;
  color:#4a3a32;
  font-size:16px;
  line-height:1.45;
}

.site .about-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#35712B;
  font-weight:700;
}

.site .about-bottom{
  margin:0;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  color:#4a3a32;
  font-size:16px;
  line-height:1.65;
}








.site .directions-block{
  position: relative;
  padding: 46px 0 70px;
  background: none; /* фон переносим в подложку */
}

/* светлая подложка секции поверх back-site */
.site .directions-block::before{
  content:""/*;
  position:absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(1500px, calc(100% - 40px));
  height: calc(100% - 36px);

  background: url('/images/background-key.jpg') center/cover no-repeat;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  opacity: 1;
  pointer-events:none;*/
}



.site .directions-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 22px;
}

/* карточки более “теплые”, как в макете */
.site .direction-card{
  position:relative;
  border-radius: 16px;
  padding: 30px 50px;
  padding-bottom: 40px;
  background: url('/images/background-key.jpg');
  background-size: 100% 100%;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);

  overflow:hidden;
  backdrop-filter: blur(2px);
}

/* иконка меньше и выше */
.site .direction-icon{
  display:flex;
  justify-content:center;
  margin-bottom: 22px;
}

.site .direction-icon img{
  display:block;
  height: 120px;
  width: auto;
}

.site .direction-title{
  text-align:center;
  margin: 0 0 16px 0;
  color:#4a3a32;
  font-size: 27px;
  line-height: 1.25;
  font-weight: 500;
}

.site .direction-title strong{
  font-weight: 800;
}

.site .direction-list{
  list-style:none;
  margin:0;
  padding:0;
}

.site .direction-list li{
  position:relative;
  padding-left: 26px;
  margin: 0 0 14px 0;
  color:#4a3a32;
  font-size: 17px;
  line-height: 1.65;
}

/* чек меньше и ближе к тексту */
.site .direction-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#35712B;
  font-weight: 800;
  font-size: 15px;
}

.site .direction-link{
  display:inline-block;
  margin-top: 14px;
  color:#2f6f2a;
  font-weight:700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site .direction-link:hover{
  opacity: 0.85;
}

/* декор внутри карточек как в макете: заметнее, но нежно */
.site .direction-seeds::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -18px;
  width: 320px;
  height: 260px;
  background: url(/images/semena2.png) right bottom / contain no-repeat;
  opacity: 1;
  pointer-events: none;
}

.site .direction-meat::after{
  content:"";
  position:absolute;
  right: 10px;
  bottom: 10px;
  width: 175px;
  height: 130px;
  background: url('/images/meat2.png') right bottom/contain no-repeat;
  opacity: 1;
  pointer-events:none;
}

/* чтобы текст был поверх декора */
.site .direction-card > *{
  position:relative;
  z-index:1;
}

/* hover — очень мягкий, как в фигме */
.site .direction-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.14);
  transition: 0.2s ease;
}









/* ===== Наши преимущества ===== */



.site .benefits-title{
  margin-bottom: 20px;
}

.site .benefits-subtitle{
  text-align: center;
  color: #50382D;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 34px 0;
  text-align: center;
  display: block;
}
.site .benefits-subtitle>span {
  display: inline-block;
  max-width: 850px;  
}


.site .benefits-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.site .benefit-card{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 26px 28px 24px;

  /* “молочная” карточка */
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
}

/* текстура внутри КАЖДОЙ карточки */
.site .benefit-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: url('/images/background-key.jpg') center/cover no-repeat;
  opacity: 0.55;
  pointer-events:none;
  z-index: 0;
}

/* контент поверх */
.site .benefit-card > *{
  position: relative;
  z-index: 1;
}

.site .benefit-icon{
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}

.site .benefit-icon img{
  
  object-fit: contain;
  display: block;
}

.site .benefit-heading{
  text-align: center;
  color: #4a3a32;
  font-weight: 800;
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 10px 0;
}

.site .benefit-text{
  text-align: center;
  color: #50382D;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* лёгкий hover */
.site .benefit-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.12);
  transition: 0.2s ease;
}










/* ===== Контакты ===== */



.site .contacts-title{
  margin-bottom: 18px;
}

.site .contacts-subtitle{
  text-align:center;
  color:#50382D;
  font-size:20px;
  line-height:1.4;
  margin: 0 0 34px 0;
}

.site .contacts-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

/* карточки — как у тебя ранее: молочный слой + background-key в ::before */
.site .contact-card{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 30px 45px;

  background: url('/images/background-key.jpg');
  background-size: 100% 100%;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
}

/*.site .contact-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: url('/images/background-key.jpg') center/cover no-repeat;
  opacity: 0.55;
  pointer-events:none;
  z-index: 0;
}*/

.site .contact-card > *{
  position:relative;
  z-index:1;
}

.site .contact-card-title{
  text-align:center;
  color:#4a3a32;
  font-weight:800;
  font-size:28px;
  line-height:1.2;
  margin: 4px 0 22px 0;
}

/* разделители как на макете */
.site .contact-sep{
  height:1px;
  background: rgba(0,0,0,0.10);
  margin: 18px 0;
}

/* строки контактов */
.site .contact-rows{
  margin-top: 10px;
}

.site .contact-row{
  display:flex;
  gap: 16px;
  align-items:center;
}

.site .contact-row-top{
  align-items:flex-start;
}

.site .contact-icon{
  width: 42px;
  flex: 0 0 42px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.site .contact-icon img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  display:block;
}

.site .contact-value{
  color:#50382D;
  font-size:20px;
  line-height:1.35;
}

.site .contact-value a{
  color:#50382D;
  text-decoration:none;
}

.site .contact-strong{
  font-weight:800;
  font-size:26px;
  letter-spacing: 0.2px;
}

/* декоративная картинка внизу левой карточки */
.site .contact-card-info::after{
  content:"";
  position:absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 300px;
  background: url('/images/cont-back.png') no-repeat;
  background-size: 100% auto;
  opacity: 0.8;
  pointer-events:none;
  z-index: 0;
  background-position: top;
}

/* реквизиты */
.site .legal-top{
  text-align:center;
  color:#50382D;
  font-size:20px;
  line-height:1.55;
  margin-bottom: 6px;
}

.site .legal-lines{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.site .legal-line{
  color:#50382D;
  font-size:20px;
  line-height:1.55;
}

.site .legal-line span{
  font-weight:800;
  color:#4a3a32;
  margin-right: 6px;
}

.site .legal-block-title{
  font-weight:800;
  color:#4a3a32;
  font-size:20px;
  margin-bottom: 6px;
}

.site .legal-block-text{
  color:#50382D;
  font-size:20px;
  line-height:1.55;
}



/*.page-header h1 {
    background: #eee;
    margin-top: 20px;
    padding: 50px 10px;
    border-radius: 6px;
    text-align: center;
    font-size:44px;
    font-weight:700;
    color:#4a3a32;
}*/


.page-header {
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin: 50px auto 40px auto;
    padding: 60px 30px;
    
    
    overflow: hidden;
    text-align: center;
    position: relative;



    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);

    background: url('/images/background-key.jpg');
    
}

.page-header h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    color:#4a3a32;
}

.com-content-article__body p {
  line-height: 1.8;
}
.com-content-article__body li {
  line-height: 1.8;
}


.site .page-header::after{
      content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30%;
    height: 100%;
    background: url(/images/cont-back.png) no-repeat;
    background-size: 100%;
    background-position: right bottom;
    opacity: 0.20;
    pointer-events: none;
}

.site .page-header::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30%;
    height: 100%;
    background: url(/images/cont-back.png) no-repeat;
    background-size: 100%;
    background-position: left;
    opacity: 0.20;
    pointer-events: none;
    transform: scaleX(-1);
}



/*.site .page-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url(/images/about-left.jpg) no-repeat left top;
    background-size: contain;
    pointer-events: none;
}*/




/* ===== Footer ===== */

footer {
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.site .site-footer{
  position: relative;
  margin-top: 60px;
  padding: 26px 0 18px;
  background: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}

.site .site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background: url('/images/background-key.jpg') center/cover no-repeat;
  opacity: 0.45;
  pointer-events:none;
  z-index:0;
}

.site .footer-container{
  position:relative;
  z-index:1;
  max-width:1400px;
  margin:0 auto;
  padding:0 20px;
}

.site .footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}

.site .footer-left{
  color:#50382D;
  font-size:14px;
  line-height:1.6;
}

.site .footer-right{
  text-align:right;
}

.site .footer-right a{
  color:#50382D;
  text-decoration:none;
  font-size:14px;
  line-height:1.6;
}

.site .footer-right a:hover{
  text-decoration:underline;
}

.site .footer-bottom{
  text-align:center;
  margin-top:16px;
  font-size:13px;
  color:#6b5a50;
  line-height:1.5;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 15px;
}

.site .footer-bottom a{
  color:#6b5a50;
  text-decoration:underline;
  text-underline-offset:3px;
}








.site .header-container-wrap.uk-active {
  background: rgba(30,30,30,0.8);
  padding: 5px 10px;
}

.site .header-container-wrap.uk-active .logo{
  font-size: 20px;
}

.site .header-container-wrap.uk-active .contacts .phone {
  font-size: 20px
}
.site .header-container-wrap.uk-active .nav a {
  font-size: 13px;
}







@media (max-width:768px){
  .site .footer-top{
    flex-direction:column;
    gap:14px;
  }

  .site .footer-right{
    text-align:left;
  }
}





@media (max-width: 1100px){
  .site .nav {
    display: none;
  }
  
}

@media (max-width: 1024px){
  .site .directions-block::before{
    width: calc(100% - 20px);
  }
  .site .directions-grid{
    grid-template-columns: 1fr;
  }
  .site .benefits-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .site .contacts-grid{
    grid-template-columns: 1fr;
  }
  .site .contact-strong{
    font-size:24px;
  }
  .site .contact-value,
  .site .legal-top,
  .site .legal-line,
  .site .legal-block-title,
  .site .legal-block-text{
    font-size:18px;
  }
  .site .contact-card-title {
    display: none;
  }
}



/* Responsive */
@media (max-width: 968px) {
    .site .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .site .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .site .hero h1 {
        font-size: 42px;
    }
    .site .section-title{ font-size:34px; }
    .site .about-grid{
      grid-template-columns: 1fr;
    }
    .site .about-divider{ display:none; }
    .site .contacts {
      text-align: center;
    }
}

@media (max-width: 640px) {
    .site .hero h1 {
        font-size: 32px;
    }
    
    .site .feature-item {
        font-size: 16px;
    }
    
    .site .cta-buttons {
        flex-direction: column;
    }
    
    .site .btn {
        width: 100%;
        text-align: center;
    }
    .site .benefits-grid{
      grid-template-columns: 1fr;
    }
    .site .container-block {
      margin: 20px 0;
    }
    .site .container-block {
      padding: 30px 0;
    }
    .site .section-title {
      margin-bottom: 32px;
    }
    .site .section-title {
      font-size: 30px;
    }
    .site .direction-title {
      font-size: 23px;
    }
    .site .contact-card-info::after {
      background-position: bottom;
    }
    .site .page-header h1 {
      font-size: 32px;
    }
    .site .page-header {
      padding: 30px 10px;
    }
    .site .contacts-title {
      margin-bottom: 15px;
    }
    .site .contacts-subtitle {
      margin-bottom: 14px;
    }
    .site .page-header {
      margin: 20px auto 20px auto;
    }
    .uk-article h2 {
      font-size: 20px;
    }
}




/* ===== Список семян (в стиле сайта) ===== */

.site .seeds-block{
  margin-top: 18px;
}

.site .seeds-title{
  margin-bottom: 34px;
}

/* 3 колонки как просил, дальше адаптив ниже */
.site .seeds-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* карточка — визуально как contact-card/benefit-card */
.site .seed-card{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 28px 32px 24px;

  background: url('/images/background-key.jpg');
  background-size: 100% 100%;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
}

/* мягкий hover как в benefits */
.site .seed-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.12);
  transition: 0.2s ease;
}

/* верхняя строка */
.site .seed-top{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.site .seed-badge{
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;

  background: rgba(63,124,58,0.10);
  border: 1px solid rgba(63,124,58,0.18);

  color: #2f6f2a;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}

.site .seed-status{
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;

  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2px;
  line-height: 1;

  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
  color: #4a3a32;
}

.site .seed-name{
  margin: 0 0 14px 0;
  color: #4a3a32;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

/* список с галочками как в about/direction */
.site .seed-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.site .seed-list li{
  position: relative;
  padding-left: 26px;
  margin: 0 0 12px 0;

  color: #50382D;
  font-size: 17px;
  line-height: 1.6;
}

.site .seed-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#35712B;
  font-weight: 800;
  font-size: 15px;
}

/* кнопки */
.site .seed-actions{
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.site .seed-btn{
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
}

.site .seed-btn-secondary{
  background-color: rgba(255,255,255,0.45);
  color: #4a3a32;
  border: 1px solid rgba(0,0,0,0.10);
}

.site .seed-btn-secondary:hover{
  /*background-color: rgba(255,255,255,0.35);*/
  color: #4a3a32;
}

/* декоративные колосья справа снизу (можно оставить один и тот же cont-back.png) */
.site .seed-card::after{
      content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(/images/cont-back.png) no-repeat;
    background-size: 100%;
    background-position: right bottom;
    opacity: 0.55;
    pointer-events: none;
}

/* если хочешь разный декор по культурам — просто переопредели картинку */
.site .seed-card-pea::after{
  opacity: 0.45; /* чуть спокойнее */
}



.meat-block .seed-name {
  font-size: 17px;
  line-height: 1.4;
}

.site .meat-block .seeds-grid {
  grid-template-columns: repeat(4, 1fr);
}


.site .meat-block .seed-card::after{
    
    width: 50%;
    height: 50%;
    background: url(/images/meat2.png) no-repeat;
    
    
    opacity: 0.85;
    
}



/* адаптив */
@media (max-width: 1024px){
  .site .seeds-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .site .meat-block .seeds-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px){
  .site .seeds-grid{
    grid-template-columns: 1fr;
  }
  .site .seed-card{
    padding: 24px 22px 22px;
  }
  .site .seed-name{
    font-size: 26px;
  }
  .site .hero-container {
    padding: 20px 10px;
  }
  .site .nav {
    display: none;
  }
  .site .phone {
    font-size: 23px;
  }
  .site .header-container {
    gap: 10px;
  }
  .site .hero {
    min-height: 0;
  }
  .site .contacts {
    text-align: center;
  }
  .site .header-container-wrap.uk-active {
    gap: 5px;
  }
  .site .meat-block .seeds-grid {
      grid-template-columns: repeat(1, 1fr);
  }
}


@media (max-width: 400px){
  .hero-content h1 {
    font-size: 24px;
  }
  .site .logo {
    font-size: 24px;
  }
  .site .phone {
    font-size: 21px;
  }
  .site .header-container-wrap {
    padding: 10px 10px;
  }
  .site .header-container {
    gap: 4px;
  }
  .site .hero h1 {
    font-size: 25px;
  }
  .site .header-container-wrap.uk-active .logo {
    font-size: 17px;
  }
  .site .header-container-wrap.uk-active .contacts .phone {
    font-size: 17px;
  }
  .site .header-container-wrap.uk-active .header-container {
    gap: 0px;
  }
  .site .contacts-subtitle {
    margin-bottom: 10px;
  }
  .site .benefits-subtitle {
    margin-bottom: 10px;
  }
  .site .direction-card {
    padding: 30px 30px;
  }
  .site .about-card {
    padding: 30px 30px;
  }
  .site .contact-card {
    padding: 30px 25px;
  }
  .site .contact-row {
    gap: 6px;
  }
  .site .contact-strong {
    font-size: 21px;
  }
  .site .page-header h1 {
    font-size: 28px;
  }
}







.hero-height { height: 150px !important; }


@media (min-width: 640px) {
  .hero-height { height: 300px !important; }
}