:root {
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  
  .workflow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .workflow-title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
  }
  
  .workflow-title h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 400;
  }
  
  .workflow-title p {
    font-size: 1.125rem;
    color: #4B5563;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .workflow-diagram {
    width: 100%;
    height: 800px;
    position: relative;
    overflow: visible;
  }
  
  .node {
    position: absolute;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .node:hover {
    transform: translateY(-5px);
  }
  
  .node-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-gray-200);
  }
  
  .node-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 500;
  }
  
  .icon-container {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  
  .node-content {
    padding: 15px;
  }
  
  .node-items {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .node-items li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 14px;
  }
  
  .input-item {
    background-color: rgba(116, 68, 255, 0.1);
    border-left: 3px solid var(--color-primary-light);
  }
  
  .process-item {
    background-color: rgba(240, 29, 233, 0.08);
    border-left: 3px solid var(--color-secondary);
  }
  
  .output-item {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--color-success);
  }
  
  .intelligence-section {
    border-top: 1px solid var(--color-gray-200);
    padding-top: 15px;
    margin-top: 15px;
  }
  
  .intelligence-section h4 {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    display: flex;
    align-items: center;
  }
  
  .icon-badge {
    background-color: var(--color-purple-100);
    color: var(--color-primary);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 3px 6px;
    margin-left: 8px;
  }
  
  .path-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .flow-path {
    stroke-dasharray: 10, 5;
    animation: flow 10s linear infinite;
  }
  
  @keyframes flow {
    0% { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: 0; }
  }
  
  .floating-element {
    position: absolute;
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--shadow);
    z-index: 10;
  }
  
  .floating-metric {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--color-gray-800);
  }
  
  .metric-value {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
    color: var(--color-primary);
  }
  
  /* Teams Workflow Styles */
.teams-workflow {
  padding: 2rem 0;
  overflow: visible;
  margin-bottom: 4rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.workflow-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.workflow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.purple {
  background-color: rgba(116, 68, 255, 0.1);
  color: #7444FF;
}

.pink {
  background-color: rgba(240, 29, 233, 0.1);
  color: #F01DE9;
}

.green {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.teal {
  background-color: rgba(20, 184, 166, 0.1);
  color: #14B8A6;
}

.orange {
  background-color: rgba(249, 115, 22, 0.1);
  color: #F97316;
}

.workflow-card h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
}

.ai-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-primary) 0%, #3B82F6 100%);
  color: white;
  font-size: 0.675rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-weight: 500;
  margin-left: 0.5rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  padding: 0.5rem 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-list li:last-child {
  border-bottom: none;
}

.challenge-item {
  padding-left: 1.5rem;
  position: relative;
  color: #7444FF;
}

.challenge-item::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgba(116, 68, 255, 0.1);
  color: #7444FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.success-item {
  padding-left: 1.5rem;
  position: relative;
  color: #10B981;
}

.success-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Intelligence Card Styles */
.intelligence-card {
  background: linear-gradient(135deg, rgba(74, 13, 255, 0.03) 0%, rgba(240, 29, 233, 0.03) 100%);
  border: 2px solid rgba(74, 13, 255, 0.2);
}

.intelligence-group {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1rem;
}

.intelligence-group:last-of-type {
  border-bottom: none;
}

.intelligence-group h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #F01DE9;
  margin-bottom: 0.5rem;
}

.intelligence-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intelligence-group li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

/* Synchronized Teams Card */
.sync-teams-card {
  border: 2px solid rgba(16, 185, 129, 0.3);
  background-color: rgba(16, 185, 129, 0.03);
}

/* Visibility Card */
.visibility-card {
  border: 2px solid rgba(249, 115, 22, 0.3);
  background-color: rgba(249, 115, 22, 0.03);
}

/* Metric Highlight */
.metric-highlight {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
}

.metric-content {
  display: flex;
  align-items: center;
}

.metric-content svg {
  color: #10B981;
  margin-right: 0.5rem;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #7444FF;
  margin-right: 0.25rem;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--color-gray-700);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .intelligence-card {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  
  .intelligence-card {
    grid-column: span 1;
  }
}