:root {
  --platinum: #7E4794;
  --bootstrap: #36b700;
  --bg-workflow: #fdfdfd;
}

.workflow-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.toggle-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: sticky;
  top: 0.5rem;
  padding: 0.5rem;
  background: rgba(244, 245, 247, 0.9);
  backdrop-filter: blur(5px);
  z-index: 100;
  width: 100%;
}

@media (max-width: 600px) {
  .toggle-container {
    flex-direction: column;
    position: static;
    padding: 0;
  }
}

.toggle-btn {
  padding: 1rem 2rem;
  border-radius: 40px;
  border: 3px solid var(--ink);
  font-family: 'Lexend', sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 6px 6px 0px var(--ink);
}

.toggle-btn.platinum {
  background: #fff;
  color: var(--platinum);
}

.toggle-btn.platinum.active {
  background: var(--platinum);
  color: #fff;
  transform: translate(3px, 3px);
  box-shadow: 0px 0px 0px var(--ink);
}

.toggle-btn.bootstrap {
  background: #fff;
  color: var(--bootstrap);
}

.toggle-btn.bootstrap.active {
  background: var(--bootstrap);
  color: #fff;
  transform: translate(3px, 3px);
  box-shadow: 0px 0px 0px var(--ink);
}

.phase-card {
  background: var(--surface);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 8px 8px 0px var(--ink);
  display: none;
  animation: fadeIn 0.4s ease-out;
  overflow-x: hidden;
}

.phase-card.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px dashed var(--ink);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.phase-title {
  font-size: 1.5rem;
  color: var(--ink);
}

.phase-meta {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.9rem;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border: 1px solid #eee;
  border-radius: 8px;
}

.workflow-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.workflow-table th, .workflow-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

/* ... rest of existing classes ... */

@media (max-width: 768px) {
  body { padding: 0.75rem; }
  .workflow-container { padding: 0.5rem; }
  
  .toggle-container {
    flex-direction: column;
    position: static;
    gap: 0.8rem;
    padding: 1rem 0;
  }
  
  .toggle-btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
    box-shadow: 4px 4px 0px var(--ink);
  }
  
  .phase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
  }
  
  .phase-card {
    padding: 1.5rem 1rem;
    border-radius: 18px;
    margin-bottom: 2rem;
  }
  
  .phase-title {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .table-responsive {
    border-width: 2px;
    border-color: var(--ink);
  }

  .workflow-table {
    min-width: 600px;
  }

  footer { padding: 2rem 1rem; margin-top: 2rem; }
}

.workflow-table th {
  background: #f8f9fa;
  font-family: 'Lexend';
  font-size: 0.8rem;
  text-transform: uppercase;
}

.cost-tag {
  background: var(--ink);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
}

.workflow-steps {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid var(--ink);
}

.workflow-steps h5 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: 'Lexend';
}

.workflow-steps ol {
  padding-left: 1.5rem;
}

.workflow-steps li {
  margin-bottom: 0.5rem;
}

.badge-output {
  display: inline-block;
  background: var(--accent-amber);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid var(--ink);
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  opacity: 0.8;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
}
.footer-email:hover {
  opacity: 1;
  border-bottom-color: var(--platinum);
}
