/* PRICING CARDS */
.pricing-section {
    padding: 50px 20px;
    text-align: center;
}

.pricing-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5%;
    color: #ffffff;
}

/* Pricing cards container */
.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

/* Glassmorphism Pricing Card */
.pricing-card {
    background: rgba(134, 255, 144, 0.303);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    width: 300px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Headers */
.price-header {
    font-size: 28px;
    font-weight: 600;
}

.price {
    font-size: 38px;
    font-weight: 700;
    color: #1ae87e;
    margin: 15px 0;
}

.price span {
    font-size: 18px;
    color: #b4b4b4;
}

/* Features */
.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.pricing-card ul li {
    margin: 10px 0;
    font-size: 15px;
}

.pricing-card li::before {
    content: "✔ ";
    color: #1ae87a;
    font-weight: bold;
}

/* Button */
.btn-press {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 25px;
    background: #1ae881;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-press:hover {
    background: #15b04e;
    box-shadow: 0 0 10px rgba(26, 232, 112, 0.7);
}

/* Highlight Best Plan */
.best-plan {
    border: 2px solid #1ae870;
    box-shadow: 0 0 25px rgba(26, 232, 108, 0.3);
    transform: scale(1.05);
}



/* TOGGLE SWITCH */
.toggle-container {
  text-align: center;
  margin-top: 20px;
  z-index: 1;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
}

.switch input { display: none; }

.slider {
  position: absolute;
  cursor: pointer;
  background: #ccc;
  border-radius: 30px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 4px; bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: .4s;
}

input:checked + .slider {
  background: #15b04e;
}

input:checked + .slider:before {
  transform: translateX(30px);
}

/* COMPARISON TABLE*/
.comparison-section {
  padding: 40px;
  max-width: 900px;
  margin: 40px auto;
  display: none;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: white;
  font-weight: bold;
  margin-bottom: 5%;
}

.comparison-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.table-header {
  display: contents;
}

.table-header div {
  background: #15b04e;
  color: black;
  font-weight: bold;
}

.table-row {
  display: contents;
}

.feature-title, .plan {
  padding: 18px;
  color: white;
  background: rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-weight: 500;
}

.table-row:hover div {
  background: rgba(26,232,71,0.25);
}


@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes float { 0% {transform: translateY(0);} 100% {transform: translateY(-120px);} }
