
.glass-card{
  width:201px;
  height:208px;
  border-radius:22px;
  position:relative;
  padding:18px 16px;
  box-sizing:border-box;

  background: rgba(255,255,255,0.00);
  border:1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);

  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:flex-start;

  color:#fff;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.glass-card::before{
  content:"";
  position:absolute; inset:0;
  border-radius:22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.06));
  mix-blend-mode: overlay;
  pointer-events:none;
  opacity:.7;
}

.glass-card::after{
  content:"";
  position:absolute; inset:1px;
  border-radius:20px;
  box-shadow: inset 0 0 30px rgba(255,255,255,0.12);
  pointer-events:none;
}

.num{
  font-weight:800;
  font-size:48px;
  line-height:1;
  letter-spacing:0.5px;
}

.subtitle{
  font-weight:500;
  font-size:13px;
  line-height:1.4;
  opacity:.95;
}

.cta{
  width:44px; height:44px;
  border-radius:50%;
  border:0;
  background: radial-gradient(100% 100% at 50% 0%, #ff9b59 0%, #ff6a3d 60%, #ff5a36 100%);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; font-weight:700;
  cursor:pointer;
  box-shadow: 0 8px 18px rgba(255,106,61,0.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta:hover{ transform: translateY(-2px); box-shadow:0 12px 22px rgba(255,106,61,0.55); }

@media (prefers-reduced-motion: reduce){
  .cta{ transition:none; }
}
