/* Hero headline line colors / nowrap: see css/main.css (.hero__hl-line, .hero__hl-line--nowrap). */

/* ── Agency How It Works ── */
.agency-steps {
  background: var(--white);
  padding: var(--space-24) 0;
}

.agency-steps__header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.agency-steps__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.agency-steps__headline {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.agency-steps__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.agency-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
}

.agency-step {
  text-align: center;
  padding: var(--space-6) var(--space-6) 0;
}

.agency-step__number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: var(--weight-black);
  color: var(--white);
  margin: 0 auto var(--space-6);
  box-shadow: 0 4px 20px rgba(232, 83, 30, 0.3);
}

.agency-step__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.agency-step__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ── Stats strip ── */
.agency-stats-strip {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.agency-stats-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(232, 83, 30, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.agency-stats-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.agency-stat-item {
  text-align: center;
}

.agency-stat-item__number {
  font-size: var(--text-5xl);
  font-weight: var(--weight-black);
  color: var(--white);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}

.agency-stat-item__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-top: var(--space-2);
}

.agency-stats-strip__divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .agency-steps__grid {
    grid-template-columns: 1fr;
  }

  .agency-stats-strip__divider {
    display: none;
  }

  .agency-stats-strip__inner {
    gap: var(--space-10);
  }

  .agency-steps {
    padding: var(--space-16) 0;
  }
}

@media (max-width: 480px) {
  .agency-stat-item__number {
    font-size: var(--text-4xl);
  }
}
