.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-step__number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brand-mint);
  color: var(--brand-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.process-step__body h4 { margin-bottom: 0.25rem; }
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.deliverable-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.deliverable-item__icon { color: var(--brand-mint); margin-bottom: 0.5rem; }
.deliverable-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.deliverable-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.output-type {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.output-type__icon { color: var(--brand-mint); flex-shrink: 0; margin-top: 2px; }
.output-type h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.output-type p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.pricing-tier {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.pricing-tier--featured {
  border-color: var(--brand-mint);
  background: rgba(16, 185, 129, 0.05);
}
.pricing-tier__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-mint);
  line-height: 1;
  margin: 0.5rem 0;
}
.pricing-tier__unit { font-size: 0.85rem; color: var(--text-muted); }
.stat-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat-box { text-align: center; }
.stat-box__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-mint);
  line-height: 1;
}
.stat-box__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--brand-mint);
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
}
details[open] .faq-item summary::after { content: '−'; }
.faq-item p { margin-top: 0.75rem; color: var(--text-muted); line-height: 1.8; }
