/* ===============================
   PRICING PLANS – PREMIUM SAAS 3D
================================= */
.dr1pricingplans {
  padding: 100px 20px;
  background:
    radial-gradient(
      circle at top,
      rgba(99, 102, 241, 0.18),
      transparent 45%
    ),
    linear-gradient(135deg, #020617, #020617);

  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

/* ---------- CONTAINER ---------- */
.dr1pricingplans .pricing-container {
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

/* ---------- TITLE ---------- */
.dr1pricingplans .pricing-title {
  font-size: 42px;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 16px;
  letter-spacing: -0.6px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

/* ---------- SUBTITLE ---------- */
.dr1pricingplans .pricing-subtitle {
  font-size: 17px;
  color: #c7d2fe;
  margin-bottom: 70px;
  line-height: 1.75;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- CARDS GRID ---------- */
.dr1pricingplans .pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-bottom: 70px;
}

/* ---------- CARD BASE ---------- */
.dr1pricingplans .pricing-card {
  background:
    linear-gradient(
      180deg,
      #020617,
      #020617
    );

  padding: 40px 32px;
  border-radius: 22px;
  border: 1px solid rgba(99, 102, 241, 0.25);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.85),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

  position: relative;
  overflow: hidden;
}

/* ---------- SOFT TOP GLOW ---------- */
.dr1pricingplans .pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top,
      rgba(99, 102, 241, 0.18),
      transparent 60%
    );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.dr1pricingplans .pricing-card:hover::before {
  opacity: 1;
}

/* ---------- CARD HOVER ---------- */
.dr1pricingplans .pricing-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 45px 120px rgba(0, 0, 0, 0.95),
    0 0 55px rgba(99, 102, 241, 0.35);
}

/* ---------- CARD TITLE ---------- */
.dr1pricingplans .pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #e0e7ff;
  margin-bottom: 18px;
}

/* ---------- CARD TEXT ---------- */
.dr1pricingplans .pricing-card p {
  font-size: 15.5px;
  color: #94a3b8;
  line-height: 1.8;
}

/* ---------- FEATURED CARD ---------- */
.dr1pricingplans .pricing-card.featured {
  border: 2px solid #6366f1;
  transform: scale(1.05);

  box-shadow:
    0 45px 130px rgba(99, 102, 241, 0.45),
    0 0 70px rgba(99, 102, 241, 0.4);
}

.dr1pricingplans .pricing-card.featured:hover {
  transform: translateY(-14px) scale(1.07);
}

/* ---------- FEATURES PANEL ---------- */
.dr1pricingplans .pricing-features {
  max-width: 1000px;
  margin: 0 auto 70px;

  background:
    linear-gradient(
      180deg,
      #020617,
      #020617
    );

  border-radius: 24px;
  padding: 44px 40px;

  border: 1px solid rgba(99, 102, 241, 0.25);

  box-shadow:
    0 35px 110px rgba(0, 0, 0, 0.95);
}

/* ---------- FEATURES LIST ---------- */
.dr1pricingplans .pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px 36px;
}

.dr1pricingplans .pricing-features li {
  font-size: 15.5px;
  color: #e5e7eb;
  padding-left: 32px;
  position: relative;
  line-height: 1.75;
}

/* ---------- CHECK ICON ---------- */
.dr1pricingplans .pricing-features li::before {
  content: "✔";
  color: #6366f1;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;

  text-shadow:
    0 0 10px rgba(99, 102, 241, 0.9);
}

/* ---------- CTA ---------- */
.dr1pricingplans .pricing-cta {
  margin-top: 50px;
}

.dr1pricingplans .pricing-cta p {
  font-size: 18px;
  color: #f1f5f9;
  margin-bottom: 30px;
  line-height: 1.75;
}

/* ---------- WHATSAPP BUTTON ---------- */
.dr1pricingplans .whatsapp-btn {
  display: inline-block;
  padding: 18px 42px;

  background:
    linear-gradient(
      135deg,
      #22c55e,
      #16a34a
    );

  color: #ffffff;
  font-size: 17px;
  font-weight: 700;

  border-radius: 999px;
  text-decoration: none;

  box-shadow:
    0 18px 50px rgba(34, 197, 94, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.dr1pricingplans .whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 30px 80px rgba(34, 197, 94, 0.95);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .dr1pricingplans {
    padding: 80px 18px;
  }

  .dr1pricingplans .pricing-title {
    font-size: 34px;
  }

  .dr1pricingplans .pricing-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .dr1pricingplans .pricing-title {
    font-size: 28px;
  }

  .dr1pricingplans .pricing-cta p {
    font-size: 16px;
  }

  .dr1pricingplans .whatsapp-btn {
    width: 100%;
    padding: 16px 0;
  }
}