/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif !important;
}

.page-title {
  font-family: "Caveat", cursive;
  font-size: 64px;
  font-weight: 700;
}

.pricing-card {
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  transition: 0.3s ease;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.featured {
  background: linear-gradient(135deg, rgb(78, 29, 147), rgb(164, 144, 195));
  color: #fff;
  border: 3px solid #8b5cf6;
  transform: scale(1.05);
}

.featured .text-muted,
.featured p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.price {
  font-size: 48px;
  font-weight: 800;
}

.badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #8c5ce6;
  color: #fff;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 50px;
}

ul.features {
  list-style: none;
  padding: 0;
}

ul.features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
}

.check {
  width: 16px;
  height: 16px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
  font-size: 12px;
  margin-right: 10px;

  flex-shrink: 0; /* prevent shrinking/stretching */
  align-self: flex-start; /* keep it top-aligned */
}

.btn-custom-dark {
  background: #000;
  color: #fff;
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
}

.btn-custom-light {
  background: #fff;
  color: #6f42c1;
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
}
.btn-custom-dark,
.btn-custom-light {
  margin-top: auto;
}

/* Tablet: 768px and below */
@media (max-width: 768px) {
  .page-title {
    font-size: 48px;
  }

  .pricing-card {
    padding: 20px;
  }

  .price {
    font-size: 40px;
  }

  ul.features li {
    font-size: 13px;
  }

  .check {
    width: 14px;
    height: 14px;
    line-height: 14px;
  }

  .btn-custom-dark,
  .btn-custom-light {
    padding: 12px;
    font-size: 14px;
  }
}

/* Mobile: 480px and below */
@media (max-width: 480px) {
  .page-title {
    font-size: 36px;
  }

  .pricing-card {
    padding: 16px;
  }

  .price {
    font-size: 32px;
  }

  ul.features li {
    font-size: 12px;
  }

  .check {
    width: 12px;
    height: 12px;
    line-height: 12px;
    margin-right: 6px;
  }

  .btn-custom-dark,
  .btn-custom-light {
    padding: 10px;
    font-size: 13px;
  }
}











/* Rectangle Add-Ons */
.addon-rect-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  transition: 0.3s ease;
}

.addon-rect-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.addon-title {
  font-size: 20px;
  font-weight: 700;
}

.addon-price {
  font-size: 26px;
  font-weight: 800;
  color: #000;
}

.addon-features {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.addon-features li {
  font-size: 14px;
  color: #475569;
  padding: 4px 0;
  position: relative;
  padding-left: 18px;
}

.addon-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 12px;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .addon-rect-card {
    flex-direction: column;
  }

  .addon-right {
    text-align: left !important;
  }
}
