/* === Общий контейнер === */
.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;
}

/* === 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;
  
  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);
  
  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);
}

.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: 20px;
}

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

.zntech-equip-btn:hover {
  background: #be195a;
  color:#fff;
}

/* === Блок программных решений === */
.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);
  
  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);
}

.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 {
    padding: 50px 40px;
    width: 520px;
    margin: 0 auto;
    margin-top: 80px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.75);
    text-align: center;
    box-shadow: 0 10px 40px rgba(28, 44, 76, 0.1);
}


.zntech-form-container .b24-form-control-string .b24-form-control-label, .b24-form-control-list .b24-form-control-label, .b24-form-control-text .b24-form-control-label {
    padding-left: 11px;
    left: auto;
    pointer-events: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: auto;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}



.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);
}