/* =========================
   STATS SECTION (MAGENTA / PURPLE "experience band")
   ========================= */

:root{
  --pr-text:#f5f2ff;
}

.pr-stats-strip{
  padding:68px 0 74px;
  color:var(--pr-text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
 /* font-family:-apple-system, system-ui, Segoe UI, Roboto, Arial, sans-serif;*/

  background:
    radial-gradient(circle at 12% 50%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(90deg,
      rgba(169,36,115,0.95) 0%,
      rgba(123,34,116,0.92) 32%,
      rgba(72,22,98,0.88) 62%,
      rgba(24,16,39,1) 100%
    );

  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.pr-stats-inner{
  max-width:1120px;
  margin:0 auto;
  padding:0 20px;
}

.pr-stats-headline{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:26px;
}

.pr-stats-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(245,242,255,.96);
  font-size:18px;
}

.pr-stats-text{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:6px 10px;
}

.pr-stats-number{
  font-size:34px;
  font-weight:950;
  letter-spacing:-0.03em;
  color: rgba(255,255,255,.98);
}

.pr-stats-label{
  font-size:20px;
  font-weight:700;
  color: rgba(255,255,255,.82);
}

.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: rgba(0,0,0,.18);
  border-radius:18px;
  padding:18px 18px 20px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 26px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
}

.pr-stats-card-icon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(245,242,255,.92);

  font-size:16px;
  margin-bottom:10px;
}

.pr-stats-card-title{
  font-size:15px;
  font-weight:850;
  margin:0 0 6px;
  color: rgba(255,255,255,.94);
}

.pr-stats-card-text{
  font-size:13px;
  line-height:1.55;
  color: rgba(255,255,255,.78);
  margin:0;
}