/* New Pricing Card Styles for Home Page */

.pricing-card-new {
  background: #262626;
  border: 8px solid #2a2a2a;
  border-radius: 1.3rem;
  padding: 0;
  margin: 2rem auto;
  overflow: visible;
  width: 100%;
}

.pricing-card-inner-new {
  padding: 24px;
  background: #262626;
  border-radius: 1.3rem 1.3rem 0 0;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

/* Toggle Section */
.toggle-container-new {
  display: flex;
  background: #3a3a3a;
  border-radius: .8rem;
  padding: 4px;
  margin-bottom: 32px;
  justify-content: center;
}

.toggle-btn-new {
  flex: 1;
  background: transparent;
  border: none;
  color: #888;
  padding: 12px 16px;
  border-radius: .8rem;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
}

.toggle-btn-new.active {
  background: #262626;
  color: #fff;
}

.badge-new {
  background: #fff3;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 8px;
  margin-left: 6px;
  font-weight: 700;
}

/* Price Section */
.price-section-new {
  margin-bottom: 32px;
  text-align: left;
}

.price-display-new {
  transition: all 0.3s ease;
}

.price-number-new {
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.currency-new {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  vertical-align: top;
}

.period-new {
  font-size: 1rem;
  color: #9ca3af;
  font-weight: 400;
}

.savings-text-new {
  font-size: 1rem;
  color: #10b981;
  font-weight: 700;
  opacity: 1;
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Features Section */
.features-list-new {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  overflow: visible;
}

.features-list-new li {
  color: #dedddc;
  padding: 8px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.features-list-new li .check-new {
  color: #aba8a7;
  opacity: .8;
  font-weight: 700;
  margin-right: 12px;
  font-size: 16px;
}

/* CTA Section */
.cta-section-new {
  margin-bottom: 0px;
}

.cta-button-new {
  width: 100%;
  background: #ff6b35;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  margin-bottom: 16px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.cta-button-new:hover {
  filter: brightness(110%);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.cta-button-new:active {
  transform: translateY(0);
}

.cta-disclaimer-new {
  color: #6b7280;
  font-size: 14px;
  text-align: center;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pricing-card-new {
    margin: 1rem auto;
  }

  .pricing-card-inner-new {
    padding: 16px;
  }

  .price-section-new {
    margin-bottom: 20px;
  }

  .price-number-new {
    font-size: 2rem;
  }

  .currency-new {
    font-size: 1.2rem;
  }

  .features-list-new {
    margin-bottom: 20px;
  }

  .features-list-new li {
    padding: 6px 0;
    font-size: 14px;
  }

  .toggle-container-new {
    margin-bottom: 20px;
  }

  .toggle-btn-new {
    font-size: 12px;
    padding: 8px 12px;
  }

  .badge-new {
    font-size: 9px;
    padding: 1px 4px;
  }

  .cta-button-new {
    padding: 10px;
    font-size: 14px;
    margin-bottom: 12px;
  }
}