.elementor-24201 .elementor-element.elementor-element-6cf8c35{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f9bd965 */.wl-pricing-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    font-family: "Inter", sans-serif;
}

/* Card */
.wl-pricing-container .price-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
      border: 1px solid #D8E5ED;
}


.wl-pricing-container .ribbon {
    position: absolute;
    right: -7px;
    background: #2873B9;
    top: 0;
  right: 0;
  color: #fff;
  padding: 5px 15px;
  font-size: 13px;
  border-radius: 0 12px 0 12px;
  font-weight: 800;
}

/* Title */
.wl-pricing-container .plan-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Price */
.wl-pricing-container .price {
    font-size: 28px;
    margin: 15px 0 5px;
    color: #2873B9;
    font-weight: 700;
}

.wl-pricing-container .price span {
    font-size: 16px;
    color: #8c8c8c;
    font-weight: 400;
}

/* Subtext */
.wl-pricing-container .subtext {
    font-size: 15px;
    margin-bottom: 20px;
    color: #84849A;
}

/* Button */
.wl-pricing-container .buy-btn {
    display: block;
    width: 100%;
    background: #2873B9;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    text-decoration: none;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* Features */
.wl-pricing-container .features {
    list-style: none;
    padding: 0;
}

.wl-pricing-container .features li {
    font-size: 17px;
    padding-left: 22px;
    margin-bottom: 15px;
    position: relative;
    color: #222222;
}

.wl-pricing-container .features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2873B9;
    font-size: 17px;
}

/* 📱 Tablet: 2×2 layout */
@media (max-width: 1024px) {
   .wl-pricing-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 📱 Mobile: 1 column */
@media (max-width: 600px) {
  .wl-pricing-container {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */