/* Layout */
.pricing-grid { margin-top: 8px; }

.pricing-card {
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.10);
  overflow: hidden;
}

.pricing-card .card-content { padding: 22px 22px 10px; }
.pricing-card .card-action  { padding: 14px 16px; border-top: 1px solid rgba(0,0,0,.06); }

/* Price typography */
.price-text {
  font-size: 1.25rem;
  color: #1976d2;
  margin-bottom: 14px;
}
.price-text .amount {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .3px;
}
.price-text .per {
  font-size: .95rem;
  color: #5f6b7a;
  margin-left: 6px;
}

/* QR frame */
.qr-frame {
  display: inline-block;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.qr-image {
  width: 240px;     /* Looks balanced on desktop */
  max-width: 60vw;  /* Scales down on mobile */
  height: auto;
  image-rendering: crisp-edges;
}

/* Microcopy */
.hint {
  margin-top: 10px;
  color: #6d7a88;
  font-size: .92rem;
}

/* Button */
.subscribe-btn {
  border-radius: 10px;
  padding: 6px 22px;
  text-transform: none;
  background: #1976d2; /* Blue to match site palette */
}
.subscribe-btn:hover { filter: brightness(1.05); }

/* Responsive tweaks */
@media (max-width: 600px) {
  .price-text { font-size: 1.15rem; }
  .price-text .amount { font-size: 1.7rem; }
  .qr-image { width: 220px; max-width: 80vw; }
}
