body {
    background: linear-gradient(135deg, #030407 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 25px;
    margin: 15px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    color: white;
}

.regular .card-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.growing .card-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.prime .card-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0 0 0;
}

.growing {
    background: linear-gradient(135deg, #fff5cd, #ffecb3);
    border: 2px solid #ffc107;
    transform: scale(1.05);
}

.growing .card-title {
    color: #b8860b;
}

.features-section h6 {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.feature-item:nth-child(2) { animation-delay: 0.1s; }
.feature-item:nth-child(3) { animation-delay: 0.2s; }
.feature-item:nth-child(4) { animation-delay: 0.3s; }
.feature-item:nth-child(5) { animation-delay: 0.4s; }
.feature-item:nth-child(6) { animation-delay: 0.5s; }

.feature-icon {
    width: 20px;
    height: 20px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-icon::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.feature-text {
    color: #555;
    font-size: 0.9rem;
}

.price-section {
    margin: 25px 0;
    text-align: left;
}

.price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.growing .price {
    color: #b8860b;
}

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

.choose-btn {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.regular .choose-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.growing .choose-btn {
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: #333;
    font-weight: bold;
}

.prime .choose-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

.choose-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.choose-btn:active {
    transform: translateY(0);
}

.choose-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.choose-btn:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pricing-card {
    animation: fadeInScale 0.8s ease forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.3s; }
.pricing-card:nth-child(3) { animation-delay: 0.5s; }

@media (max-width: 768px) {
    .pricing-container {
        padding: 0 15px;
    }
    
    .pricing-card {
        margin: 10px 0;
        padding: 25px 20px;
    }
    
    .growing {
        transform: scale(1);
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
}

@media (min-width: 992px) {
    .growing {
        margin-top: -20px;
        margin-bottom: -20px;
    }
}