.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--hit-space-md);
  margin-top: var(--hit-space-lg);
}

.benefit-card {
  background: var(--hit-white);
  border: 1px solid var(--hit-stone);
  border-radius: var(--hit-radius-md);
  padding: var(--hit-space-md);
}

.benefit-card__category {
  font-size: var(--hit-text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hit-ember);
  margin-bottom: 12px;
}

.benefit-card__title {
  font-family: var(--hit-font-body);
  font-size: var(--hit-text-md);
  font-weight: 500;
  color: var(--hit-ink);
  margin-bottom: var(--hit-space-xs);
  line-height: var(--hit-lh-snug);
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--hit-text-sm);
  font-weight: 300;
  color: var(--hit-slate);
  line-height: 1.5;
}

.benefit-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--hit-ember);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: var(--hit-space-lg);
}

.process-step {
  background: var(--hit-white);
  padding: var(--hit-space-md);
  position: relative;
}

.process-step__number {
  font-family: var(--hit-font-display);
  font-size: 40px;
  font-weight: 300;
  color: rgba(224, 78, 10, 0.28);
  line-height: 1;
  margin-bottom: 8px;
}

.process-step__title {
  font-weight: 500;
  color: var(--hit-ink);
  margin-bottom: 6px;
  font-size: var(--hit-text-base);
}

.process-step__body {
  font-size: var(--hit-text-sm);
  font-weight: 300;
  color: var(--hit-slate);
  line-height: 1.6;
}
