/* Slide 14 - Infrastructure & Tools */
.slide14-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  padding: 0;
  width: 1600px;
  height: 950px;
}

@media (max-width: 1800px) {
  .slide14-content {
    height: 100%;
    width: 100%;
  }
}

@media (max-height: 700px) {
  .slide14-content {
    height: unset;
  }
}

.slide14-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.infrastructure-container-14 {
  width: 100%;
  max-width: 1200px;
  padding: 40px;
  z-index: 2;
  position: relative;
}

.infrastructure-title-14 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1f2937;
  letter-spacing: -0.02em;
}

.infrastructure-subtitle-14 {
  font-size: 1.2rem;
  text-align: center;
  color: #475569;
  margin-bottom: 40px;
  font-weight: 500;
  max-width: 100% !important;
}

.infrastructure-section-14 {
  margin-bottom: 35px;
}

.infrastructure-grid-14 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 35px;
}

.infrastructure-item-14 {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.infrastructure-item-14:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.infrastructure-item-14::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
}

.item-header-14 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.item-icon-14 {
  width: 35px;  
  height: 35px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 102, 241, 0.2);
  flex-shrink: 0;
}

.item-icon-14.licenses {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.item-icon-14.maintenance {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.item-icon-14 img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.item-info-14 h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2px;
  line-height: 1.2;
}

.item-details-14 {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.item-amount-14 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  text-align: right;
  min-width: 110px;
  padding: 8px 12px;
  border-radius: 6px;
  background-color: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.infrastructure-total-14 {
  display: flex;
  justify-content: center;
}

.total-infrastructure-card-14 {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 18px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.total-infrastructure-card-14::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(99, 102, 241, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.total-infrastructure-card-14 .total-icon-14 {
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.total-infrastructure-card-14 .total-icon-14 img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
}

.total-infrastructure-card-14 h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .slide14-content {
    padding: 8px 6px;
  }

  .infrastructure-container-14 {
    padding: 8px;
    max-width: 100%;
  }

  .infrastructure-title-14 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    line-height: 1.0;
  }

  .infrastructure-subtitle-14 {
    font-size: 0.7rem;
    margin-bottom: 12px;
    padding: 0 5px;
  }

  .infrastructure-section-14 {
    margin-bottom: 10px;
  }

  .infrastructure-grid-14 {
    gap: 6px;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .infrastructure-item-14 {
    padding: 8px 10px;
    border-radius: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .item-header-14 {
    gap: 6px;
    width: 100%;
  }

  .item-icon-14 {
    width: 24px;
    height: 24px;
  }

  .item-icon-14 img {
    width: 12px;
    height: 12px;
  }

  .item-info-14 h3 {
    font-size: 0.8rem;
  }

  .item-details-14 {
    font-size: 0.6rem;
  }

  .item-amount-14 {
    font-size: 0.8rem;
    text-align: left;
    min-width: auto;
    width: 100%;
    margin-top: 3px;
  }

  .total-infrastructure-card-14 {
    padding: 8px 15px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .total-infrastructure-card-14 .total-icon-14 {
    width: 28px;
    height: 28px;
  }

  .total-infrastructure-card-14 .total-icon-14 img {
    width: 14px;
    height: 14px;
  }

  .total-infrastructure-card-14 h3 {
    font-size: 1rem;
  }
}

@media (max-height: 700px) {
  .slide14-content {
    padding: 6px 4px;
  }

  .infrastructure-container-14 {
    padding: 8px;
  }

  .infrastructure-title-14 {
    font-size: 1.3rem;
    margin-bottom: 3px;
  }

  .infrastructure-subtitle-14 {
    font-size: 0.6rem;
    margin-bottom: 8px;
  }

  .infrastructure-section-14 {
    margin-bottom: 8px;
  }

  .infrastructure-grid-14 {
    gap: 4px;
    margin-bottom: 8px;
  }

  .infrastructure-item-14 {
    padding: 6px 8px;
  }

  .item-header-14 {
    gap: 4px;
  }

  .item-icon-14 {
    width: 20px;
    height: 20px;
  }

  .item-icon-14 img {
    width: 10px;
    height: 10px;
  }

  .item-info-14 h3 {
    font-size: 0.7rem;
  }

  .item-details-14 {
    font-size: 0.55rem;
  }

  .item-amount-14 {
    font-size: 0.7rem;
  }

  .total-infrastructure-card-14 {
    padding: 6px 12px;
  }

  .total-infrastructure-card-14 .total-icon-14 {
    width: 24px;
    height: 24px;
  }

  .total-infrastructure-card-14 .total-icon-14 img {
    width: 12px;
    height: 12px;
  }

  .total-infrastructure-card-14 h3 {
    font-size: 0.9rem;
  }
}