.demand-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b3d6e 0%, #1578be 60%, #d40000 100%);
  padding: 10px 0 14px;
}

.demand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.08), transparent 26%),
    radial-gradient(circle at 10% 85%, rgba(212,0,0,.12), transparent 22%);
  pointer-events: none;
}

.demand-hero .container {
  position: relative;
  z-index: 1;
}

.demand-hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.demand-hero-main {
  flex: 1 1 520px;
  min-width: 0;
}

.demand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-size: var(--text-xs);
  font-weight: var(--fw-xbold);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.demand-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5757;
}

.demand-hero h1 {
  margin: 0 0 4px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
  font-weight: var(--fw-xbold);
  color: #fff;
}

.demand-hero p {
  margin: 0;
  max-width: 700px;
  color: rgba(255,255,255,.82);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.demand-hero-stats {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

.demand-stat {
  min-width: 105px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  text-align: center;
  color: #fff;
}

.demand-stat-value {
  display: block;
  font-size: var(--text-lg);
  font-weight: var(--fw-xbold);
  line-height: 1.1;
  margin-bottom: 2px;
}

.demand-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.72);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .demand-hero {
    padding: 10px 0 12px;
  }

  .demand-hero-row {
    align-items: flex-start;
    gap: 12px;
  }

  .demand-hero-stats {
    width: 100%;
  }

  .demand-stat {
    flex: 1 1 110px;
  }
}

@media (max-width: 575.98px) {
  .demand-hero {
    padding: 8px 0 10px;
  }

  .demand-pill {
    margin-bottom: 5px;
    padding: 4px 9px;
  }

  .demand-hero h1 {
    font-size: 1.25rem;
    margin-bottom: 4px;
  }

  .demand-hero p {
    font-size: 13px;
    line-height: 1.45;
  }

  .demand-hero-stats {
    gap: 8px;
  }

  .demand-stat {
    padding: 7px 10px;
    min-width: 95px;
  }

  .demand-stat-value {
    font-size: var(--text-base);
  }
}