.pricing-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
    position: relative;
    margin-bottom: 30px;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #635CDB;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.pricing-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #635CDB;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.pricing-btn:hover {
    background: #4e48b6;
}

.featured {
    border: 2px solid #635CDB;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #635CDB;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
}

.demo-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    margin-bottom: 30px;
}

.demo-card:hover {
    transform: translateY(-8px);
}

.demo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.demo-content {
    padding: 20px;
    text-align: center;
}

.demo-content h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.demo-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

.demo-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #635CDB;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.demo-btn:hover {
    background: #a09cdf;
}