/* Automotive-Specific Styles */
/* Particle Effects */
.car-particle {
  position: absolute;
  background-color: rgba(100, 200, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

/* Feature Demo Box */
.feature-demo {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.feature-demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: #1a2a3a;
  border-radius: 12px 12px 0 0;
  z-index: 1;
}
.feature-demo::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 10px;
  height: 10px;
  background: #ff5f56;
  border-radius: 50%;
  box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
  z-index: 2;
}

/* Health Monitoring Cards */
.health-card {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid #4a90e2;
  transition: transform 0.3s;
}
.health-card:hover {
  transform: translateY(-5px);
}
.health-icon {
  background: #0f2027;
}

/* Integration Diagram */
.integration-diagram {
  position: relative;
  height: 300px;
}
.diagram-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.diagram-connections {
  position: absolute;
  width: 100%;
  height: 100%;
}
.connection {
  position: absolute;
  animation: pulse 2s infinite;
}

/* Tech Timeline */
.tech-item {
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding: 15px 0;
}
.tech-icon {
  background: #203a43;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .integration-diagram { height: 200px; }
  .ai-demo-container { flex-direction: column; }
}