.section-pricing-1 {
  background-color: #020202;
}
.section-pricing-1 .pricing-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 18px;
  color: #fafafa;
  text-align: center;
}

.section-pricing-1 .pricing-desc {
  text-align: center;
  color: #a1a1aa;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
}

.section-pricing-1 .card.pricing-card {
  background: #18181b;
  border-radius: 12px;
  color: #fafafa;
  box-shadow: 0 2px 20px #0007;
  display: flex;
  flex-direction: column;
  padding: 44px 32px;
  min-height: 520px;
  position: relative;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-pricing-1 .card.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 28px #0009;
}

/* ===== Border Colors ===== */
.section-pricing-1 .white-border {
  border: 1px solid #7e7878; /* softer white */
  box-shadow: 0 3px 20px rgba(255, 255, 255, 0.05); /* subtle glow */
}
.section-pricing-1 .yellow-border {
  border: 2px solid #fde68a;
  box-shadow: 0 5px 32px #fde68a40;
}

/* === Badge === */
.section-pricing-1 .badge-plan {
  background: linear-gradient(145deg, #202024, #1a1a1f);
  color: #a3a3a7;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  line-height: 1.25;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.section-pricing-1 .badge-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.6);
}

.section-pricing-1 .yellow-border .badge-plan {
  background: #fde68a;
  color: #020202;
  font-weight: 600;
}

.section-pricing-1 .pricing-price {
  font-weight: bold;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 12px 0;
  color: #fafafa;
  letter-spacing: -1px;
}

.section-pricing-1 .pricing-description {
  color: #a1a1aa;
  margin-bottom: 0;
  font-size: 1.09rem;
}

.section-pricing-1 .pricing-divider {
  border-bottom: 1px solid #2e2e33;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.section-pricing-1 .pricing-card ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 28px;
  color: #a1a1aa;
}

.section-pricing-1 .pricing-card li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  font-size: 1.06rem;
}

/* ===== Tick Images ===== */
.section-pricing-1 .white-border li::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: url("/grapesjs/img/PricingSection/ImagePriceSection1/WhiteTick.png") no-repeat center center /
    70%;
  margin-right: 10px;
}

.section-pricing-1 .yellow-border li::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fde68a;
  background: url("/grapesjs/img/PricingSection/ImagePriceSection1/yellow-tick.png") no-repeat center center /
    70%;
  margin-right: 10px;
}

.section-pricing-1 .plan-btn {
  border-radius: 13px;
  width: 100%;
  height: 56px;
  font-size: 1.13rem;
  font-weight: 700;
  margin-top: auto;
}

.section-pricing-1 .btn-primary {
  background: #fde68a;
  color: #18181b;
  border: none;
}

.section-pricing-1 .btn-outline-light {
  border: 1.5px solid #a1a1aa;
  color: #fafafa;
  background: transparent;
}

/* === Responsive Improvements === */
@media (max-width: 992px) {
  .section-pricing-1 .card.pricing-card {
    min-height: 440px;
    padding: 28px 20px;
    margin-bottom: 32px;
  }

  .section-pricing-1 .pricing-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-pricing-1 .pricing-title {
    font-size: 1.8rem;
  }

  .section-pricing-1 .pricing-desc {
    font-size: 1rem;
    margin-bottom: 32px;
    padding: 0 12px;
  }

  .section-pricing-1 .pricing-card li {
    font-size: 1rem;
  }

  .section-pricing-1 .plan-btn {
    font-size: 1rem;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .card.pricing-card {
    min-height: 380px;
    padding: 22px 16px;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .pricing-card li {
    font-size: 0.95rem;
  }
}

.section-pricing2-2 {
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  color: #2c1463;
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-pricing2-2 .pricing-title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

.section-pricing2-2 .pricing-card {
  border-radius: 16px;
  border: 2px solid #2c0069; /* Added border */
  padding: 30px;
  transition: 0.3s;
  width: 460px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Optional soft shadow */
}

.section-pricing2-2 .pricing-card:hover {
  transform: translateY(-5px);
}

.section-pricing2-2 .standard {
  background-color: #e9f2ff;
  border-color: #ff7f2a; /* Purple border for Standard */
}

.section-pricing2-2 .premium {
  background-color: #2c0069;
  color: #fff;
  border-color: #ff7f2a; /* Orange border for Premium */
}

.section-pricing2-2 .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c0069;
}

.section-pricing2-2 .premium .price {
  color: #fff;
}

.section-pricing2-2 .old-price {
  text-decoration: line-through;
  color: #a19bc2;
  font-size: 2.5rem;
  margin-left: 8px;
  font-weight: 700;
}

.section-pricing2-2 .feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.section-pricing2-2 .feature-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.section-pricing2-2 .feature-list li::before {
  content: "✔";
  color: #ff7f2a;
  margin-right: 10px;
}

.section-pricing2-2 .btn-orange {
  background-color: #ff7f2a;
  border: 2px solid #ff7f2a; /* Added border */
  color: #fff;
  border-radius: 25px;
  padding: 12px;
  font-weight: 600;
  width: 100%;
  transition: 0.3s;
}

.section-pricing2-2 .btn-orange:hover {
  background-color: #fff;
  color: #ff7f2a;
  border-color: #ff7f2a;
}

.section-pricing2-2 .payment-icons img {
  height: 25px;
  margin: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-pricing2-2 .pricing-card {
    width: 100%;
    max-width: 400px;
  }
}
