

/* WRAPPER */
.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    padding: 40px;
}

/* CARD */
.pricing-card {
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.02)
    );
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 35px 30px;
    position: relative;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.4),
        inset 0 1px rgba(255,255,255,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform-style: preserve-3d;
}

/* 3D Hover */
.pricing-card:hover {
    transform: translateY(-15px) rotateX(6deg) rotateY(-6deg);
    box-shadow: 0 50px 80px rgba(0,0,0,0.6);
}

/* POPULAR */
.pricing-card.popular {
    background: linear-gradient(
        145deg,
        rgba(99,102,241,0.25),
        rgba(99,102,241,0.05)
    );
    border: 1px solid rgba(99,102,241,0.4);
}

/* BADGE */
.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 999px;
    font-weight: 600;
}

/* TEXT */
.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    opacity: 0.7;
}

/* FEATURES */
.pricing-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-card li {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* BUTTON */
.pricing-card button {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(99,102,241,0.5);
}
