:root {
  --bg: #0f172a;
  --card: linear-gradient(135deg, #0ea5a4 0%, #60a5fa 100%);
  --muted: #94a3b8;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-2: rgba(255, 255, 255, 0.03);
}

.wrap {
  width: 100%;
  margin-top: 30px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
header h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.2px;
  font-weight: 600;
}
header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Card */
.card22 {
  color: #e6eef8;
  background: #423362;
  border-radius: 14px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  min-height: 150px;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.28s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(6px) saturate(120%);
}

.card22 p {
    color: #ffffff;
    }

.card22:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.75);
}

.accent {
  position: absolute;
  right: -20px;
  top: -40px;
  width: 160px;
  height: 160px;
  background: var(--card);
  filter: blur(28px);
  opacity: 0.55;
  transform: rotate(18deg);
  pointer-events: none;
}

.title {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 8px 0;
  font-weight: 700;
}
.range {
  font-size: 34px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.price {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}
.per {
  font-size: 13px;
  color: var(--muted);
  margin-left: 6px;
  font-weight: 600;
}

.footer-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* Different color tints for cards */
.card22:nth-child(1) .accent {
  background: linear-gradient(135deg, #06b6d4 0%, #60a5fa 100%);
}
.card22:nth-child(2) .accent {
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
}
.card22:nth-child(3) .accent {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
}
.card22:nth-child(4) .accent {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

/* Responsive */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  body {
    padding: 18px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .wrap {
margin-bottom: 30px;
}
}
