/* ===============================
   GLOBAL WRAPPER
================================ */
.dlppv2-wrap {
  max-width: 1100px;
  margin: 32px auto;
  padding: 16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

/* ===============================
   HEADER
================================ */
.dlppv2-head {
  text-align: center;
  margin-bottom: 28px;
}
.dlppv2-head h1 {
  color: #075238;
  font-size: 28px;
  margin: 0 0 8px;
}
.dlppv2-head p {
  color: #555;
  margin: 0 0 14px;
  line-height: 1.5;
}

/* ===============================
   BILLING TOGGLE
================================ */
.dlppv2-toggle {
  display: inline-flex;
  gap: 6px;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 6px;
}
.dlppv2-toggle button {
  border: 0;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  color: #075238;
}
.dlppv2-toggle button.active {
  background: #EEA713;
  color: #111;
}
.dlppv2-toggle .save {
  background: #075238;
  color: #fff;
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 6px;
  font-size: 11px;
}

/* ===============================
   GRID
================================ */
.dlppv2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .dlppv2-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .dlppv2-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   CARD
================================ */
.dlppv2-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.dlppv2-card .hdr h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #075238;
}
.dlppv2-card .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.dlppv2-card .price span {
  display: none;
  font-weight: 800;
  font-size: 22px;
}
.dlppv2-card .price span em {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: #555;
  margin-left: 4px;
}
.dlppv2-card .limit {
  color: #333;
  font-weight: 600;
  margin: 0 0 14px;
}

/* Monthly / Yearly visibility */
[data-mode="monthly"] .price .monthly {
  display: inline-block;
}
[data-mode="yearly"] .price .yearly {
  display: inline-block;
}

/* ===============================
   FEATURES
================================ */
.dlppv2-card .features {
  margin: 0 0 16px;
  padding-left: 18px;
}
.dlppv2-card .features li {
  margin: 6px 0;
  font-size: 14px;
}
.dlppv2-card .features .mbg {
  color: #075238;
  font-weight: 700;
}

/* ===============================
   CTA / PAY BLOCK
================================ */
.pay-block {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pay-block .btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* Primary CTA */
.pay-block .primary {
  background: #075238;
  color: #fff;
}
.pay-block .primary:hover {
  opacity: .9;
}

/* Secondary CTA */
.pay-block .outline {
  background: #fff;
  border: 2px solid #075238;
  color: #075238;
}
.pay-block .outline:hover {
  background: #075238;
  color: #fff;
}

/* ===============================
   MODAL (BANK TRANSFER)
================================ */
.dlppv2-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.dlppv2-modal.active {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
}
.modal-box {
  position: relative;
  background: #fff;
  width: 92%;
  max-width: 480px;
  padding: 24px;
  border-radius: 16px;
  z-index: 2;
}
.modal-box h3 {
  margin-top: 0;
  color: #075238;
}
.modal-box p {
  color: #555;
  margin-bottom: 14px;
}
.modal-box input,
.modal-box textarea {
  width: 100%;
  padding: 12px;
  margin: 6px 0;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.modal-actions .btn {
  flex: 1;
}

/* ===============================
   MOBILE TWEAKS
================================ */
@media (max-width: 480px) {
  .dlppv2-head h1 {
    font-size: 22px;
  }
  .dlppv2-card {
    padding: 14px;
  }
}