   .pricing-section {
        padding: 80px 0;
        background-color: #f7f7ff;
    }

    .pricing-card {
        background: #fff;
        border-radius: 18px;
        padding: 40px 30px;
        text-align: center;
        transition: all .4s cubic-bezier(.4, 0, .2, 1);
        position: relative;
        border: 1px solid #eef0f4;
        height: 100%;

    }

    .pricing-card:hover {
        transform: translateY(-14px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    }

    /* Titles */
    .pricing-title {
        font-weight: 700;
        font-size: 26px;
        margin-bottom: 15px;
    }

    .pricing-desc {
        color: #6c757d;
        font-size: 15px;
        min-height: 60px;
    }

    .old-price {
        text-decoration: line-through;
        color: #8c8c8c;
        font-size: 14px;
        margin: 10px 0 5px;
    }

    .price {
        font-size: 32px;
        font-weight: 800;
        color: #111;
    }

    .price span {
        font-size: 16px;
        font-weight: 500;
        color: #6c757d;
    }

    .yearly {
        font-size: 14px;
        color: #6c757d;
        margin-bottom: 25px;
    }

    /* 💎 Animated Gradient Button */
    .btn-custom {
        background: linear-gradient(90deg, #4e73df, #224abe, #4e73df);
        background-size: 200% auto;
        color: #fff;
        border: none;
        padding: 14px;
        border-radius: 12px;
        font-weight: 600;
        transition: all .4s ease;
    }

    .btn-custom:hover {
        background-position: right center;
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(78, 115, 223, 0.4);
    }

    /* 🔥 Premium Glow Pulse */
    .premium {
        border: 2px solid #ff7a18;
        background: #ff7a180f;
        position: relative;
        z-index: 1;
        animation: pulseGlow 2.5s infinite alternate;
    }

    @keyframes pulseGlow {
        0% {
            box-shadow: 0 0 0 rgba(255, 122, 24, 0.4),
                0 15px 40px rgba(255, 122, 24, 0.25);
        }

        100% {
            box-shadow: 0 0 35px rgba(255, 122, 24, 0.6),
                0 25px 60px rgba(255, 122, 24, 0.4);
        }
    }

    .premium:hover {
        transform: translateY(-16px) scale(1.02);
    }

    /* ✨ Floating Badge */
    .popular-badge {
        position: absolute;
        top: -22px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg, #ff7a18, #ffb347);
        color: #fff;
        padding: 8px 30px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(255, 122, 24, 0.45);
        animation: floatBadge 3s ease-in-out infinite;
    }

    @keyframes floatBadge {

        0%,
        100% {
            transform: translate(-50%, 0);
        }

        50% {
            transform: translate(-50%, 6px);
        }
    }

    /* Enterprise */
    .enterprise-title {
        font-size: 22px;
        font-weight: 700;
        margin-top: 20px;
    }

    .btn-outline-dark {
        padding: 14px;
        border-radius: 12px;
        font-weight: 600;
        transition: all .3s ease;
    }

    .btn-outline-dark:hover {
        transform: scale(1.05);
    }

    @media(max-width:991px) {
        .pricing-card {
            margin-bottom: 30px;
        }
    }
