/* MGME Pricing Plans Plugin Styles */
.mgme-pricing-wrapper {
  /*max-width: 1200px;*/
  margin: 0 auto;
  /*padding: 60px 20px;*/
  font-family: 'Manrope', sans-serif;
  /*width: 100%;*/
}

.mgme-pricing-header {
  /*max-width: 1200px;*/
  text-align: center;
  padding: 32px 20px 0 20px;
  /*background-color: #b8d7ea;*/
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.mgme-pricing-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  width: 50%;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  /*font-size: 40px;*/
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

.mgme-pricing-header h3 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  /*font-size: 24px;*/
  line-height: 32px;
  letter-spacing: 0;
}

.mgme-pricing-header p {
  width: 70%;
  margin-bottom: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  /*font-size: 20px;*/
  /*line-height: 100%;*/
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

.mgme-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 32px 20px 30px 20px;
  grid-auto-rows: 1fr;
}

.mgme-plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
}

.mgme-plan h3 {
  text-align: left;
  margin-bottom: 0.3em;
}

.mgme-plan .mgme-btn {
  margin-top: auto;
  align-self: flex-start;
}


.mgme-credits {
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;

}

.mgme-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  color: #595959;
}

.mgme-price strong {
  font-size: 1.5rem;
  line-height: 38px;
  color: #00AEEF;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
}

.mgme-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.mgme-features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.mgme-features li::before {
  content: "";
  width: 15px;
  height: 11px;
  position: absolute;
  left: 0;
  background-image: url("check.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 8px;
  margin-right: 8px;
}

.mgme-btn {
  display: flex;
  padding: 10px 20px;
  background: #009779;
  color: white;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
  width: 100%;
  justify-content: center;
}

.mgme-btn:hover {
  background: #1f3d7b;
  color: white;
}

.mgme-benefits-container {
  /*margin-top: 60px;*/
  /*margin-bottom: 20px;*/
}

.mgme-benefits {
  background: radial-gradient(circle at top left, #CCE2F1, #EDF4FA);
  border-radius: 16px;
  padding: 60px 20px;
  margin: 30px 20px 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.mgme-benefits h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  width: 60%;
  display: flex;
  justify-content: flex-start;
}

.mgme-benefits ul {
  list-style: none;
  padding: 0;
  width: 60%;
}

.mgme-benefits li {
  margin-bottom: 10px;
  /*padding-left: 1.2em;*/
  padding-left: 28px;
  position: relative;
  display: flex;
  align-items: center;
}

.mgme-benefits li::before {
  content: "\2022";
  color: #009779;
  font-weight: bold;
  font-size: 38px;
  display: inline-block;
  /*width: 2em;*/
  position: absolute;
  left: 0;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .mgme-pricing-header h2 {
    font-size: 1.5rem;
    width: 100%;
  }

  .mgme-pricing-header p {
    width: 100%;
  }

  .mgme-benefits h4 {
    width: 100%;
    text-align: center;
  }

  .mgme-benefits ul {
    width: 100%;
  }
}
