
/* Tech Specs Section (AI Models) */
.tech-specs {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.tech-card {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.tech-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.tech-card.glow-effect {
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.05);
}

.tech-card.glow-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.tech-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.tech-info h4 {
  color: var(--text-white);
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.tech-badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(0, 255, 136, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  font-weight: 600;
}

.tech-info p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

