/* === Общий контейнер === */
.zntech-equip {
  background: transparent;
  
  color: #1c2c4c;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* === Заголовки === */
.zntech-equip-title {

  font-weight: 800;
  margin-bottom: 10px;
  color: #1c2c4c;
}

.zntech-equip-subtitle {
  color: #747c9c;
  font-size: 18px;
  margin-bottom: 50px;
}

/* === Логотипы брендов === */
.zntech-equip-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.zntech-equip-brand {
  cursor: pointer;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zntech-equip-brand img {
  max-height: 80px;
  max-width: 180px;
  opacity: 0.85;
  transition: all 0.35s ease;
}

.zntech-equip-brand:hover img,
.zntech-equip-brand.active img {
  transform: scale(1.08);
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(192,28,84,0.4));
}

/* === Placeholder === */
.zntech-placeholder-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #1c2c4c;
  font-size: 15px;
  font-weight: 500;
  border: 1px dashed rgba(28,44,76,0.2);
  border-radius: 16px;
  padding: 28px 32px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.6);
  max-width: 340px;
  transition: all 0.3s ease;
  opacity: 0.9;
  margin: 0 auto 40px;
}

.zntech-placeholder-box i {
  font-size: 22px;
  color: #c01c54;
  opacity: 0.8;
}

.zntech-placeholder-box:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* === Сетка карточек оборудования === */
.zntech-equip-models {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 35px;
  justify-items: center;
}

/* === Карточка оборудования === */
.zntech-equip-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 320px;
  transition: all 0.4s ease;
  transform: translateY(30px);
  opacity: 0;
}

.zntech-equip-card.show {
  transform: translateY(0);
  opacity: 1;
}

.zntech-equip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(192,28,84,0.25);
}

.zntech-equip-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
}

.zntech-equip-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1c2c4c;
  margin-bottom: 10px;
}

.zntech-equip-btn {
  display: inline-block;
  background: #c01c54;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zntech-equip-btn:hover {
  background: #9c1c80;
  box-shadow: 0 0 12px rgba(192,28,84,0.5);
}

/* === Блок программных решений === */
.zntech-software {
  margin-top: 80px;
  text-align: center;
}

.zntech-software-title {
  font-size: 28px;
  font-weight: 700;
  color: #1c2c4c;
  margin-bottom: 40px;
}

.zntech-software-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.zntech-software-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  width: 300px;
  transition: all 0.3s ease;
}

.zntech-software-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(192,28,84,0.25);
}

.zntech-software-thumb img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.zntech-software-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1c2c4c;
  margin-bottom: 8px;
}

.zntech-software-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}

/* === Контейнер под форму Bitrix === */
.zntech-form-container {
  margin-top: 80px;
  padding: 50px 40px;
  border-radius: 24px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: 0 10px 40px rgba(28,44,76,0.1);
}

.zntech-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1c2c4c;
  margin-bottom: 20px;
}

.hidden-block {
  display: none;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.hidden-block.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}