/* plans pricing section - all classes prefixed with plans- */
.plans-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
  color: #23283B;
  margin-bottom: 7%;
}


.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
}

.plans-card {
  border-radius: 16px;
  border: 0px solid rgba(255,255,255,0.08);
  padding: 22px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  background-color: #12121a;
}

.plans-badge-discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(-131deg, #c822cb, #e069e2, #c822cb);
  color: #cacbd2;
  font-weight: bolder !important;
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans-top-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #5b3fd9;
  color: #cacbd2;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(91,63,217,0.55);
}

.plans-plan-name {
  margin-top: 10px;
  color: #cacbd2;
  font-weight: bold;
  letter-spacing: 0.3px;
}

.plans-price-row { margin: 10px 0 12px 0; }
.plans-price {
  font-size: 36px;
  font-weight: bold;
  color: #cacbd2;
}
.plans-price small { font-size: 16px; font-weight: 600; color: #cacbd2; }

.plans-cta {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: transparent;
  border: 2px solid #C822CB;
  color: #cacbd2;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}
.plans-cta:hover { background: linear-gradient(-131deg, #c822cb, #e069e2, #c822cb); color: #cacbd2; }


.plans-renew {
  margin: 10px 0 12px 0;
  color: #cacbd2;
  font-size: 12px;
}

.plans-features-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
  color: #cacbd2;
}
.plans-features-list li { margin: 10px 0; display: flex; align-items: center; gap: 8px; }
.plans-bullet { width: 9px; height: 9px; background: linear-gradient(-131deg, #c822cb, #e069e2, #c822cb); border-radius: 50%; display: inline-block; }
.plans-strong { font-weight: bold; color: #cacbd2; }

/* Strip of features below the cards */
.plans-strip {
  background-color: #12121a;
  color: #cacbd2;
  margin-top: 24px;
  padding: 20px 18px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

.plans-strip-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 20px 0;
}

.plans-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 22px;
}
@media (max-width: 880px) {
  .plans-strip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .plans-strip-grid { grid-template-columns: 1fr; }
}


.plans-strip-item { display: flex; align-items: center; gap: 8px; color: #cacbd2; }
.plans-strip-item i { color: #ffffff; background: linear-gradient(-131deg, #c822cb, #e069e2, #c822cb);
-webkit-background-clip: text;
color: transparent;
 border-radius: 50%; width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: bold; }

.plans-title {
  font-size: 2.1rem;
  font-weight: bold;
  color: #cacbd2;
  width: 100%;
  max-width: 1300px;
  text-align: center;
  margin: 0 auto 48px auto;
}

@media (max-width: 768px) {
  .plans-title {
    font-size: 1.7rem;
    margin-bottom: 32px;
  }
}