/* Start custom CSS for html, class: .elementor-element-f0b7827 *//* ===== Local Recycling System – Pricing Section ===== */

.lrs-pricing {
  background: #f4f7f5;
  padding: 80px 16px;
}

.lrs-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Main heading */
.lrs-heading {
  text-align: center;
  margin-bottom: 40px;
}

.lrs-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #162321;
  margin: 0 0 8px;
}

.lrs-heading p {
  font-size: 15px;
  color: #6b7672;
  margin: 0;
}

/* Pricing grid */
.lrs-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card base styles */
.lrs-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}

.lrs-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(46, 125, 50, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.lrs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.lrs-card:hover::before {
  opacity: 1;
}

/* Featured / middle card */
.lrs-card.featured {
  border: 2px solid #1e8e3e;
  transform: translateY(-4px);
}

.lrs-card.featured:hover {
  transform: translateY(-10px);
}

/* Titles / tags / price */
.lrs-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #162321;
}

.lrs-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1e8e3e;
  margin: 0 0 18px;
}

.lrs-card.featured .lrs-tag {
  color: #0f5f28;
}

.lrs-price {
  font-size: 34px;
  font-weight: 700;
  margin: 12px 0 4px;
  color: #162321;
}

.lrs-price span {
  font-size: 14px;
  font-weight: 400;
  color: #6b7672;
  margin-left: 4px;
}

/* Features */
.lrs-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}

.lrs-card ul li {
  font-size: 14px;
  color: #424b48;
  padding: 6px 0;
  position: relative;
  padding-left: 18px;
}

.lrs-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 18px;
  line-height: 1;
  color: #1e8e3e;
}

/* Button */
.lrs-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: #1e8e3e;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 10px 24px rgba(30, 142, 62, 0.35);
}

.lrs-btn:hover {
  background: #166d30;
  box-shadow: 0 14px 30px rgba(22, 109, 48, 0.45);
  transform: translateY(-1px);
}

/* ===== Responsive Styles ===== */

@media (max-width: 1024px) {
  .lrs-pricing {
    padding: 60px 16px;
  }

  .lrs-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lrs-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .lrs-heading h2 {
    font-size: 26px;
  }

  .lrs-pricing-grid {
    grid-template-columns: 1fr;
  }

  .lrs-card {
    padding: 28px 22px;
  }

  .lrs-price {
    font-size: 30px;
  }
}/* End custom CSS */