.hero__intro {
  font-size: 1.05rem;
  color: var(--blue-900);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 540px;
}

.hero__services {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 540px;
}

.hero__scope {
  font-size: 0.875rem;
  color: var(--blue-700);
  font-weight: 600;
  margin-bottom: 1.75rem;
  max-width: 540px;
  padding: 0.65rem 0.85rem;
  background: rgba(92, 107, 82, 0.08);
  border-radius: 10px;
  border-left: 3px solid var(--gold-500);
}

.disclaimer-box {
  margin: 2rem auto 0;
  max-width: 800px;
  padding: 1rem 1.25rem;
  background: var(--cream-100);
  border: 1px solid rgba(58, 69, 53, 0.1);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.disclaimer-box strong { color: var(--blue-900); }

.stat__label {
  display: block;
  font-size: 1.5rem;
  color: var(--blue-700);
  margin-bottom: 0.35rem;
}

.stat__desc {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(58, 69, 53, 0.06);
}

.audience-card h3 {
  font-size: 1.15rem;
  color: var(--blue-900);
  margin-bottom: 0.75rem;
}

.audience-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(58, 69, 53, 0.06);
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--blue-700);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.process-step h3 {
  font-size: 1.05rem;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.founder-block {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--cream-100);
  border-radius: var(--radius);
  border: 1px solid rgba(58, 69, 53, 0.08);
}

.founder-block h3 {
  font-size: 1.05rem;
  color: var(--blue-900);
  margin-bottom: 0.65rem;
}

.founder-block p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 0.65rem;
}

.founder-block p:last-child { margin-bottom: 0; }

@media (max-width: 992px) {
  .audience-grid,
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero__content {
    display: flex;
    flex-direction: column;
  }

  .hero__badge { order: -2; }
  .hero__intro { order: -1; }
  .hero__actions { order: 1; margin-bottom: 0.25rem; }
  .hero__services { order: 2; }
  .hero__scope { order: 3; margin-bottom: 0; }

  .hero__intro,
  .hero__services { font-size: 0.95rem; }

  .audience-grid,
  .process-steps { grid-template-columns: 1fr; }
}
