/* Public section builder blocks */
.builder-sections { width: 100%; }
.builder-hero {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.builder-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 22, 38, 0.85), rgba(8, 22, 38, 0.45));
}
.builder-hero-inner {
  position: relative;
  z-index: 1;
  padding: 48px 32px;
  color: #fff;
  max-width: 640px;
}
.builder-hero-inner h2 { color: #fff; font-weight: 800; }
.builder-cta { background: linear-gradient(135deg, #f8fafc, #fff); }
.builder-stat-value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f47920, #1b4b7e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.builder-stat-label { font-size: 0.9rem; color: #6b7280; }
.builder-prose { line-height: 1.75; }
.builder-prose img { max-width: 100%; height: auto; border-radius: 8px; }
