/* ================= PLAN PAGE ================= */
.plan-page {
  width: 100%;
  max-width: 380px;
  margin: auto;
color: #ffffff;;
  padding: 110px 12px 100px;
}

/* TITLE */
.plan-title {
  margin: 10px 0 15px;
  text-align: center;
  font-size: 16px;
}

/* ================= PLAN CARD ================= */
.plan-card {
  width: 100%;              /* 🔥 FULL WIDTH */
  margin-bottom: 15px;
  padding: 16px;

  border-radius: 18px;

  background-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 14px;
    border-radius: 14px;
  color:#ffffff;
    font-size: 12px;
    position: relative;
    overflow: hidden;
}
/* TOP */
.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.badge1 {
  background: #ff4d4d;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
}

.plan-name {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;;
}

/* PRICE */
.plan-price {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  color: #ff4d4d;
}
/* HOVER EFFECT */
.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 25px rgba(255,0,0,0.6);
}
/* ================= STATS ================= */
.plan-stats {
     display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
  justify-content: space-between;
  margin-bottom: 10px;
}


.stat span {
  font-size: 10px;
  opacity: 0.7;
}

.stat b {
  display: block;
  font-size: 12px;
   font-size: 14px;
    font-weight: 700;
}

/* ================= FEATURES ================= */
.plan-features {
  margin-top: 10px;
}

/* ICON */
.feature i {
    color: #ff4d4d;
}

.feature {

  margin-bottom: 6px;
display: flex;
    align-items: center;
    gap: 6px;

    padding: 6px 10px;
    border-radius: 20px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
color:#ffffff;
    font-size: 11px;
}

.feature i {
  margin-right: 6px;
  color: #ff4d4d;
}

/* ================= BUTTON ================= */
.plan-btn {
  display: block;
  margin-top: 12px;
  text-align: center;
  padding: 10px;

  border-radius: 12px;
  text-decoration: none;

  background: linear-gradient(135deg, #ff1a1a, #7a0000);
  color: #fff;
  font-size: 12px;
  font-weight: 600;

  transition: 0.3s;
}

.plan-btn:hover {
  box-shadow: 0 0 12px rgba(255,0,0,0.6);
}