.pricing-card-wrap {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;

    display: flex;
    justify-content: space-evenly; /* Even spacing */
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;

    padding: 20px 50px;
    min-height: 750px;
    box-sizing: border-box;
}
.pricing-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border-top: 4px solid #7c3aed;
    width: 320px;
    padding: 28px 26px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.pricing-card h3 {
    color: #e2622d;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px 0;
}
.pricing-card .duration {
    color: #888;
    font-size: 14px;
    margin-bottom: 16px;
}
.pricing-card .old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
    margin: 0;
}
.pricing-card .new-price {
    color: #1e1e1e;
    font-size: 26px;
    font-weight: 700;
    margin: 4px 0 18px 0;
}
.pricing-card .add-to-cart-btn {
    display: inline-block;
    background: #7c3aed;
    color: #fff;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 22px;
}
.pricing-card .feature-heading {
    color: #e2622d;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
    margin: 0 0 10px 0;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    text-align: left;
}
.pricing-card ul li {
    color: #444;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}
.pricing-card ul li::before {
    content: "✓";
    color: #7c3aed;
    font-weight: 700;
    position: absolute;
    left: 0;
}
.pricing-card .best-for {
    text-align: left;
    font-size: 13px;
    color: #555;
}
.pricing-card .best-for strong {
    color: #1e1e1e;
}
/* Emoji Decorations — fixed to the actual viewport corners */
.cta-deco {
    position: fixed;
    font-size: 30px;
    pointer-events: none;
    z-index: 3;
}
.cta-deco.star {
    top: 200px;
    left: 40px;
    margin-left:-450px;
}
.cta-deco.pencil {
    bottom: 100px;
    left: 40px;
}
.cta-deco.pen {
    top: 200px;
    right: 40px;
}
.cta-deco.palette {
    bottom: 100px;
    right: 40px;
}
.cta-deco.rocket {
    bottom: 20px;
    left: 40px;
}