.contentlist-plans {
    perspective: 1500px;
}

.pricing-card {
    animation: cardEnter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 2px solid #4154f1;
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
}

.pricing-card.featured::before {
    content: "Popular";
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    background: #4154f1;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.pricing-header .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f9ff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pricing-card:hover .icon {
    background: #4154f1;
    color: white;
}

.pricing-header h3 {
    color: #2d3436;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: #4154f1;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price .currency {
    font-size: 1rem;
    font-weight: 500;
    margin-right: 0.2rem;
    vertical-align: super;
}

.price .period {
    font-size: 0.9rem;
    color: #6c757d;
}

.total-price-display {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.total-price-display .total-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.total-price-display .currency {
    font-size: 0.9rem;
    font-weight: 500;
    vertical-align: baseline;
}

.total-price-display .total-amount {
    font-size: 1.3rem;
    color: #4154f1;
    font-weight: 700;
}

.plan-duration {
    font-size: 0.8em;
    color: #666;
    font-weight: normal;
}

.pricing-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item span{
     text-align: left;
}

.feature-item:hover {
    background: #f8f9fa;
}

.feature-item i {
    color: #4154f1;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.feature-item span {
    color: #4a4a4a;
    font-size: 0.95rem;
}

.pricing-action {
    text-align: center;
    margin-top: 2rem;
}

.pricing-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: transparent;
    color: #4154f1;
    border: 2px solid #4154f1;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.pricing-button:hover {
    background: #4154f1;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(65, 84, 241, 0.2);
}

.pricing-button.featured {
    background: #4154f1;
    color: white;
}

.pricing-button.featured:hover {
    background: #2a3bf5;
    border-color: #2a3bf5;
}

.pricing-duration-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto;
    padding: 0.5rem;
    background-color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    flex-wrap: wrap;
}

.duration-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: transparent;
    color: #444444;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 120px;
}

.duration-btn.active {
    background: #ff7f11;
    color: white;
    box-shadow: 0 2px 10px rgba(255, 127, 17, 0.3);
}

.duration-btn:hover {
    background: rgba(255, 127, 17, 0.1);
    color: #ff7f11;
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: rotateY(-30deg) translateX(-100px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotateY(0) translateX(0) scale(1);
  }
}

@keyframes cardExit {
  from {
    opacity: 1;
    transform: rotateY(0) translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: rotateY(30deg) translateX(100px) scale(0.9);
  }
}

.pricing-card.exiting {
    animation: cardExit 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}
