/* ----- RESET & BASE (mobile-first, серые оттенки, без цвета) ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f2f2f2;
  font-family: Ubuntu, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.4;
}

body {
    background-image: url(/imgs/54334.jpg);
    background-size: contain;
}

button {
	 font-family: Ubuntu, sans-serif;
	
}

.ubuntu200 {font-family: Ubuntu; font-weight:200;}
.ubuntu300 {font-family: Ubuntu; font-weight:300;}
.ubuntu400 {font-family: Ubuntu; font-weight:400;}
.ubuntu700 { font-family: Ubuntu;  font-weight:700;}

thin {font-weight:200 !important;}

/* основной контейнер-обертка: максимальная ширина 1400px, центрирование,
   НЕ обрезаем overflow, чтобы элементы (подменю, соц-иконки) могли выходить за экран */
.site-container {
  max-width: 1400px;
  margin: 0 auto;
   
  position: relative;
  padding: 0 16px;
}

.widthsite {
	max-width: 1400px;
  margin: 48px auto;
  padding: 0 16px;
}

/* ========== ВЕРХНЯЯ ШАПКА ========== */
.top-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #acd0de24;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  padding: 12px 20px;
  margin-top: 12px;
  margin-bottom: 16px;
  border-radius: 12px;
  gap: 16px;
  position: relative;
  z-index: 30;
}

/* Логотип — текст в плашке */
.logo {
 
  padding: 8px 18px;
 
  display: inline-block;
  
  transition: 0.1s;
}

@media (max-width: 768px) {
.logo {text-align:center;}
}

.half2 {
	position: absolute;
    top: -45px;
    left: 100px;
	z-index:1;
	
}

.img_top {
    position: absolute;
    top: -30px;
    left: 50px;
    opacity: 0.2;
}

.img_top1 {
        position: absolute;
    top: 60px;
    right: 250px;
    opacity: 0.2;
    width: 150px;
}


.ice_3234 {
    position: absolute;
    top: 80px;
    left: 450px;
    opacity: 1;
    width: 296px;
    height: 296px;
    z-index: -1;
}

.ice_3234_2 {
    position: absolute;
    top: 0px;
    left: 200px;
    opacity: 1;
    width: 296px;
    height: 296px;
    z-index: -1;
}

.ice_3234_3 {
    position: absolute;
    top: 0px;
    right: 200px;
    opacity: 1;
    width: 296px;
    height: 296px;
    z-index: -1;
}
 



/* правая группа: меню + соц иконки */
.top-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* горизонтальное меню (верхнее) — БЕЗ ПЛАШЕК */
.top-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.top-menu > li {
  position: relative;
}

.top-menu > li > a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  /* Убрали плашку: нет background, нет padding, только текст */
  color: #1e1e1e;
  display: inline-block;
  transition: all 0.4s;
  padding: 4px 0;
    font-family: Ubuntu;
}

.top-menu > li > a:hover {
 color: #59c9eb;
}

/* выпадающее подменю для "О компании" */
.dropdown-about {
 position: absolute;
    top: 32px;
    left: 0;
    background-color: #59c9eb;
    border-radius: 12px;
    padding: 12px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s;
    z-index: 100;
    list-style: none;
    
}

.dropdown-about {
    display: flex;
    flex-wrap: wrap;
	min-width: 470px;
}


 

@media (max-width: 768px) {
	.dropdown-about { min-width: 270px;}
}

/* На десктопе — ховер */
@media (min-width: 801px) {
  .top-menu > li:hover .dropdown-about {
    opacity: 1;
    visibility: visible;
  }
}

/* На мобилке — управляется через JS класс .open */
.dropdown-about.open {
  opacity: 1;
  visibility: visible;
  position: static;
  margin-top: 8px;
  margin-bottom: 4px;
}

.dropdown-about li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
 color: #ffffff;
  font-size: 0.9rem;
   font-family: Ubuntu;
  background-color: transparent;
  transition: all 0.15s;
  white-space: nowrap;
}

.dropdown-about li a:hover {
  opacity: 0.7;
   
}

/* иконки соц сетей */
.social-icons {
 display: flex;
    gap: 7px;
    align-items: center;
    background: #ffffff;
    border-radius: 40px;
    /* border: 1px solid #00c4ef; */
    padding: 5px;
}

a.social-icon img {
   width: 34px;
  height: 34px;
}

.social-icon {
 
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #1e1e1e;
  text-decoration: none;
  transition: all 0.4s;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* ========== ОСНОВНОЕ МЕНЮ (ДЕСКТОП) ========== */
.desktop-nav {
  display: block;
}

.main-nav {
 
       background-color: #ffffff;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 6px 20px;
    margin-bottom: 32px;
    position: relative;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.main-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
 text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
    padding: 6px 0;
    color: #232323;
    display: inline-block;
    font-family: Ubuntu;
    transition: all 0.4s;
}

.main-menu > li > a:hover {
  opacity:0.7;
 
}

.main-menu > li:first-child {
    position: relative;
	border: 1px solid #59c9eb;
}

.main-menu > li:first-child a {
 
}




.has-dropdown {
	
    
    border-radius: 30px;
    /* padding: 0px 20px !important; */
    padding-left: 30px !important;
    padding-right: 15px !important;
}

.has-dropdown:before {
	content: '';
    position: absolute;
   
   left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
	  background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
 
background-image: url(/imgs/catalog.svg); 
}
 

/* подменю для "Продукция" (десктоп) */
.dropdown-products {
  position: absolute;
  top: 32px;
  left: 0;
  background-color: #59c9eb;
 width: 800px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
  z-index: 200;
  list-style: none;
  
}

ul.dropdown-products {
     
    display: grid;
    grid-template-columns: repeat(2, 1fr);
     
	align-items: center;
	  grid-auto-rows: 1fr;
}

.main-menu > li.has-dropdown:hover .dropdown-products {
  opacity: 1;
  visibility: visible;
}

.dropdown-products li  {
	position: relative;
	padding-left: 35px;
}

.dropdown-products li:before  {
	content: '';
    position: absolute;
   
    left: 0; 
	 top: 50%;
	  transform: translateY(-50%);
    width: 40px;
    height: 40px;
	  background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.dropdown-products li:nth-child(1):before {
background-image: url(/imgs/icons_prod/1.svg); 
}

.dropdown-products li:nth-child(2):before {
background-image: url(/imgs/icons_prod/2.svg); 
}

.dropdown-products li:nth-child(3):before {
background-image: url(/imgs/icons_prod/3.svg); 
}

.dropdown-products li:nth-child(4):before {
background-image: url(/imgs/icons_prod/4.svg); 
}

.dropdown-products li:nth-child(5):before {
background-image: url(/imgs/icons_prod/5.svg); 
}

.dropdown-products li:nth-child(6):before {
background-image: url(/imgs/icons_prod/6.svg); 
}

.dropdown-products li:nth-child(7):before {
background-image: url(/imgs/icons_prod/7.svg); 
}
 

.dropdown-products li a {
  display: block;
  padding: 2px 20px;
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  background-color: transparent;
  transition: background 0.15s;
  white-space: normal;
  word-break: normal;
  line-height: 1.3;
}

.dropdown-products li a:hover {
  opacity:0.6;
}

.dropdown-products li {
  max-width: 340px;
}

/* ========== БУРГЕР И МОБИЛЬНЫЙ САЙДБАР ========== */
.burger-btn {
  display: none;
  background-color: #00c4ef;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  transition: background 0.2s;
  z-index: 40;
  position: relative;
}

.burger-btn:hover {
  background-color: #3a3a3a;
}

.burger-line {
  width: 28px;
  height: 2px;
  background-color: white;
  border-radius: 4px;
  transition: 0.2s;
}

/* Мобильный сайдбар (выезжает слева) */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100vh;
  background-color: #acd0de24;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  padding: 20px 0;
}

.mobile-sidebar.open {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 20px 20px;
  border-bottom: 1px solid #c0c0c0;
  margin-bottom: 20px;
}

.sidebar-logo {
 
 
 
 
  padding: 6px 14px;
 
 
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  transition: background 0.2s;
}

.sidebar-close:hover {
  background-color: #c0c0c0;
}

.sidebar-menu {
  list-style: none;
  padding: 0 20px;
}

.sidebar-menu li {
  margin-bottom: 12px;
}

.sidebar-menu li a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  display: block;
  padding: 8px 0;
  transition: opacity 0.2s;
}

.sidebar-menu li a:hover {
  opacity: 0.6;
}

/* Подменю продукции в сайдбаре */
.sidebar-dropdown {
  list-style: none;
  padding-left: 20px;
  margin-top: 8px;
  display: none;
}

.sidebar-dropdown.open {
  display: block;
}

.sidebar-dropdown li a {
  font-size: 0.9rem;
  font-weight: normal;
  padding: 6px 0;
  white-space: normal;
}

.products-link .arrow {
  font-size: 0.75rem;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.2s;
}

.sidebar-products-trigger .products-link {
  font-weight: 600;
}

/* Оверлей */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.sidebar-overlay.active {
  display: block;
}

/* ========== ДЕМОНСТРАЦИОННЫЙ БЛОК ПЕРВОГО ЭКРАНА ========== */
.hero-placeholder {
  margin: 20px 0 60px 0;
}

.hero-block {
  background-color: #d6d6d6;
  padding: 60px 24px;
  border-radius: 24px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.hero-block h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  font-weight: 600;
  color: #1f1f1f;
}

.hero-block p {
  font-size: 1.1rem;
  color: #2c2c2c;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== АДАПТИВНОСТЬ (МОБИЛЬНАЯ ВЕРСИЯ) ========== */
@media (max-width: 800px) {
  .top-header {
    flex-direction: column;
    align-items: stretch;
  }

  .top-nav-wrapper {
    justify-content: space-between;
  }

  .top-menu {
    gap: 16px;
    justify-content: center;
  }

  /* Скрываем десктопное меню */
  .desktop-nav {
    display: none;
  }

  /* Показываем бургер */
  .burger-btn {
    display: flex;
    margin-bottom: 16px;
  }

  /* Для подменю "О компании" на мобилке */
  .dropdown-about {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 8px;
    
  }

  .dropdown-about.open {
    display: block;
  }

  .top-menu > li > a {
    padding: 6px 0;
  }

  .hero-block h1 {
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  .site-container {
    padding: 0 12px;
  }
  
  .widthsite {
  padding: 0 12px;
}

  .top-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .social-icons {
    justify-content: center;
  }

  .top-nav-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* Для планшетов, где бургер не нужен, но десктопное меню показываем */
@media (min-width: 801px) {
  .burger-btn {
    display: none;
  }
  
  .mobile-sidebar, .sidebar-overlay {
    display: none;
  }
}



/* ========== СЛАЙДЕР (ВТОРОЙ ЭКРАН) ========== */
 
.slider-section {
  margin: 32px 0 48px 0;
  width: 100%;
  position: relative;
  /* Слайдер на всю ширину */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

/* Важно: переопределяем ширину контейнера Swiper */
.banner-swiper {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
}

.swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

/* Стили для каждого слайда */
.banner-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-image {
  width: 100%;
  height: 100%;

}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit:cover;
}

/* Фоны для слайдов (серые блоки) */
.slide-1 {
      background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
 
	 width: 100%;
    height: 100%;   
    background-image: url(/imgs/1.jpg);  
}

.slide-2 {
  background-color: #9a9a9a;
}

.slide-3 {
  background-color: #aaaaaa;
}

/* Затемнение */
.banner-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
     
  z-index: 1;
}

/* Контент слайда */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 0 54px;
  
  color: white;
      height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    background: #00c4ef;
	
	  background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	background-image: url(/imgs/64545.jpg);
}


 

.slide-content:before {
    content: '';
    position: absolute;
   top: 150px;
    right: -70px;
    width: 140px;
    height: 140px;
    background-image: url(/imgs/star-1.svg);
	 background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.slide-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  
}

.slide-subtitle {
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.5;
   
  max-width: 550px;
}

.slide-btn {
 background: none;
    border: 1px solid #ffffff;
  color: white;
  
  padding: 14px 36px;
  font-size: 1rem;
   
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.slide-btn:hover {
  background-color: #2c2c2c;
}

/* Навигация */
.swiper-button-prev,
.swiper-button-next {
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}

.swiper-pagination-bullet {
  background-color: #d0d0d0;
}

.swiper-pagination-bullet-active {
  background-color: white;
}

/* Адаптив */
@media (max-width: 768px) {
  .banner-swiper {
    height: 450px;
  }
  
  .banner-slide {
      flex-direction: column;
	  
  }
  
  .slide-title {
    font-size: 1.8rem;
  }
  
  .slide-subtitle {
    font-size: 0.95rem;
  }
  
  .slide-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
  
  .slide-content {
    
    padding: 20px;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .banner-swiper {
    height: 600px;
  }
  
  .slide-title {
    font-size: 1.4rem;
  }
  
  .slide-subtitle {
    font-size: 0.85rem;
  }
}



/* ========== ТРЕТИЙ ЭКРАН - СЕТКА ПРОДУКЦИИ ========== */
.products-grid-section {
  margin: 48px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Карточка продукта */
.product-card {
  background-color: #e0e0e0;
  border-radius: 16px;
  
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.product-card-btn {
  background-color: #ecc01b;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.2s;
  align-self: flex-start;
}

.product-card-btn:hover {
  background-color: #2c2c2c;
}

/* Карточка-заголовок (залитая другим цветом) */
.title-card {
  background-color: #ecc01b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title-card-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: white;
  margin: 0;
  z-index: 2;
}

.card1, .card2, .card3, .card4, .card5, .card6, .card7, .card8, .card9 {
	
	  background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.card1 {background-image: url(/imgs/prod/1.jpg);}
.card2 {background-image: url(/imgs/prod/3.jpg);}
.card3 {background-image: url(/imgs/prod/4.jpg);}
.card4 {background-image: url(/imgs/prod/5.jpg);}
.card5 {background-image: url(/imgs/2.jpg);}
.card6 {background-image: url(/imgs/prod/6.jpg);}
.card7 {background-image: url(/imgs/prod/7.jpg);}

.product-card {
position: relative;
overflow: hidden;
}

.product-card:not(:first-child):before {
content:"";
width:100%;
height:100%;

position:absolute;
 background: -webkit-linear-gradient(148deg, rgb(139 189 205) 28%, rgb(255 255 255 / 0%) 50%);
background: -moz-linear-gradient(148deg, rgb(139 189 205) 28%, rgb(255 255 255 / 0%) 50%);
background: linear-gradient(148deg, rgb(139 189 205) 28%, rgb(255 255 255 / 0%) 50%);
z-index:1;
}

.product-card-content {
	position:relative;
	margin: 20px;
	z-index: 2;
}

 


/* ========== АДАПТИВ ДЛЯ СЕТКИ ========== */
@media (max-width: 1024px) {
  .products-grid {
    gap: 18px;
  }
  
  .product-title {
    font-size: 1rem;
  }
  
  .title-card-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .product-card {
    min-height: 180px;
    
  }
  
  .title-card {
    grid-column: span 1;
  }
  
  /* 7 карточек: 2 ряда по 2, потом 3-й ряд с 3 карточками, но это норм */
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .product-card {
   
  }
  
  .product-title {
    font-size: 1rem;
  }
}



/* ========== ЧЕТВЕРТЫЙ ЭКРАН - НАШИ ПРЕИМУЩЕСТВА ========== */
.advantages-section {
  margin: 48px 0;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1e1e1e;
      text-transform: uppercase;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.advantage-card {
 background-color: #f2f7f7d6;
    backdrop-filter: blur(4px);
 /* background-color:#8abccd; */
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
    flex-direction: column;
    align-items: center;
border-bottom: 3px solid #ecc01b;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
 font-size: 3rem;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
 
 
}

.advantage-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  color: #1e1e1e;
  margin: 0;
}

/* ========== АДАПТИВ ДЛЯ ПРЕИМУЩЕСТВ ========== */
@media (max-width: 1100px) {
  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }
}

@media (max-width: 600px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .advantage-card {
    padding: 20px 12px;
  }
  
  .advantage-icon {
    font-size: 2.5rem;
  }
  
  .advantage-text {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}



/* ========== ПЯТЫЙ ЭКРАН - СЕГМЕНТЫ РЫНКА ========== */
 .splide__slide {
      width: 370px;
    }
    
    .segment-card {
      height: 420px;
     
      border-radius: 20px;
      overflow: hidden;
    }
    
    .segment-image {
      height: 360px;
      
	 
    }
	
	.segment-image img {
		    width: 100%;
    height: 100%;
	 object-fit: cover;
	 border-radius:30px;
		
	}
    
    .segment-title {
    padding: 16px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    }
    
    @media (max-width: 600px) {
      .splide__slide { width: 240px; }
      .segment-card { height: 380px; }
      .segment-image { height: 280px; }
    }
	
	
	
	/* ========== ШЕСТОЙ ЭКРАН - ПАРТНЕРЫ ========== */
.partners-section {
  margin: 48px 0 60px 0;
  overflow: hidden;
}

.partners-track-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  padding: 30px 0;
  border-radius: 24px;
}

.partners-track {
  display: flex;
  gap: 30px;
  width: fit-content;
  animation: scrollLeft 50s linear infinite;
}

.partner-logo {
  width: 120px;
  height: 120px;
   
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.2s;
  
}

.partner-logo img {
    height: 75px;
    width: 100px;
    /* border-radius: 50%; */
    object-fit: contain;
}

.partner-logo:hover {
  transform: scale(1.05);
  
}

/* Анимация движения влево */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Адаптив */
@media (max-width: 768px) {
  .partner-logo {
     
  }
  
  .partners-track {
    gap: 20px;
  }
  
  .partners-track-container {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    
  }
  
  .partners-track {
    gap: 15px;
  }
  
  .partners-track-container {
    padding: 15px 0;
  }
}



/* ========== СЕДЬМОЙ ЭКРАН - НОВОСТИ И ОБЗОРЫ ========== */
.news-section {
  margin: 48px 0 60px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}

.news-card {
 background-color: #acd0de14;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.news-image {
  width: 100%;
  height: 220px;
  background-color: #9a9a9a;
  flex-shrink: 0;
}

.news-image img {
    object-fit: cover;
    width: 100%;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 20px 20px 12px 20px;
  color: #1e1e1e;
}

.news-date {
  font-size: 0.85rem;
  color: #5a5a5a;
  margin: 0 20px 20px 20px;
}

.news-btn {
  background-color: #ecc01b;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin: 0 20px 20px 20px;
  align-self: flex-start;
}

.news-btn:hover {
  background-color: #2c2c2c;
}

/* Кнопка "Все новости" */
.news-all-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.news-all-btn {
  background-color: #00cff2;
  color: white;
  border: none;
  padding: 14px 48px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.news-all-btn:hover {
  background-color: #2c2c2c;
}

.news-all-btn:active {
  transform: scale(0.98);
}

/* ========== АДАПТИВ ДЛЯ НОВОСТЕЙ ========== */
@media (max-width: 1024px) {
  .news-grid {
    gap: 20px;
  }
  
  .news-title {
    font-size: 1rem;
    margin: 16px 16px 8px 16px;
  }
  
  .news-date {
    margin: 0 16px 16px 16px;
  }
  
  .news-btn {
    margin: 0 16px 16px 16px;
  }
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .news-image {
    height: 200px;
  }
  
  .news-title {
    font-size: 1rem;
  }
  
  .news-all-btn {
    padding: 12px 32px;
    font-size: 0.9rem;
  }
}


/* ========== ВОСЬМОЙ ЭКРАН - ПОДВАЛ ========== */
.footer {
  background-color: #b2c2cd;
  margin-top: 60px;
  padding: 48px 0 24px 0;
  	
	  background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	background-image: url(/imgs/5334.jpg);
 
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Логотип в подвале */
.footer-logo {
  
  padding: 8px 18px;
   
  display: inline-block;
  margin-bottom: 24px;
}

.footer-office-title {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-contacts {
  font-style: normal;
  margin-bottom: 24px;
}

.footer-contacts p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.4;
}

.footer-phone,
.footer-email {
  font-weight: 500;
}

/* Социальные иконки */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  background-color: #a3a3a3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 1.2rem;
  color: #1e1e1e;
  text-decoration: none;
  transition: background-color 0.2s;
}

.footer-social-icon:hover {
  background-color: #7a7a7a;
}

/* Заголовки колонок */
.footer-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Меню в подвале */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 4px;
}

.footer-menu li a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #ffffff;
  transition: opacity 0.2s;
  display: inline-block;
}

.footer-menu li a:hover {
  opacity: 0.6;
}

/* Нижняя строка */
.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 20px 16px 0;
  border-top: 1px solid #b0b0b0;
  text-align: center;
}

.footer-copyright {
  font-size: 0.8rem;
  color: #ffffff;
}

/* ========== АДАПТИВ ДЛЯ ПОДВАЛА ========== */
@media (max-width: 1024px) {
  .footer-container {
    gap: 30px;
  }
  
  .footer-col-title {
    font-size: 1rem;
  }
  
  .footer-menu li a {
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer {
    padding: 36px 0 20px 0;
  }
  
  .footer-logo {
    margin-bottom: 20px;
  }
  
  .footer-bottom {
    margin-top: 32px;
  }
}