/* =========================
   STATS / BENEFITS STRIP
   ========================= */

.pr-stats-strip {
  padding: 48px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.2), transparent 55%),
    radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.18), transparent 55%),
    #020617;
  color: #e5e7eb;
}

.pr-stats-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Headline: number + text */

.pr-stats-headline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.pr-stats-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #38bdf8, #1d4ed8);
  color: #f9fafb;
  font-size: 18px;
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.55);
}

.pr-stats-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.pr-stats-number {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #38bdf8;
}

.pr-stats-label {
  font-size: 20px;
  font-weight: 600;
  color: #e5e7eb;
}

/* Cards row */

.pr-stats-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1024px) {
  .pr-stats-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pr-stats-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pr-stats-card {
  background:
    radial-gradient(circle at top left, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.96));
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.75);
}

.pr-stats-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 16px;
  margin-bottom: 10px;
}

.pr-stats-card-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #e5e7eb;
}

.pr-stats-card-text {
  font-size: 13px;
  line-height: 1.5;
  color: #9ca3af;
  margin: 0;
}