.pricing-feature-list {
    background: linear-gradient(120deg, #f3f3f3 0%, #e8e8e8 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1rem;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    h1 {
        text-align: center;
        margin-top: 1rem;
        font-size: 1.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 1rem;
        position: relative;

        &::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #6ab04c, #89d86a);
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            font-size: 20px;
        }
    }

    p {
        text-align: center;
        margin-bottom: 4rem;
        color: #666;
        font-size: 1.1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 40px;

        @media (max-width: 768px) {
            gap: 20px;
        }

        .plan {
            background-color: #fff;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            flex: 1;
            min-width: 300px;
            max-width: 380px;
            box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);

            @media (max-width: 340px) {
                min-width: 100%;
            }

            h2 {
                font-size: 24px;
                margin-bottom: 15px;
                font-weight: 600;
                color: #333;
                position: relative;
                display: inline-block;

                &::after {
                    content: '';
                    position: absolute;
                    bottom: -5px;
                    left: 0;
                    width: 100%;
                    height: 2px;
                    background: #6ab04c;
                    transform: scaleX(0);
                    transition: transform 0.3s ease;
                }
            }

            .price {
                margin-bottom: 1.5rem;
                font-size: 36px;
                font-weight: 700;
                color: #6ab04c;
                position: relative;
                display: inline-block;
            }

            ul.features {
                list-style-type: none;
                text-align: left;
                margin-bottom: 1.5rem;

                li {
                    margin: 5px 0;
                    padding: 4px 0;
                    display: flex;
                    align-items: center;
                    font-size: 15px;
                    line-height: 1.5;
                    transition: transform 0.2s ease;

                    &:hover {
                        transform: translateX(5px);
                    }

                    .fas,
                    i {
                        margin-right: 8px;
                        font-size: 16px;
                    }

                    .fa-check-circle {
                        color: #6ab04c;
                    }

                    .fa-times-circle {
                        color: #eb4d4b;
                    }
                }
            }

            button {
                border: none;
                width: 100%;
                padding: 14px 35px;
                margin-top: 1.5rem;
                background: linear-gradient(to right, #6ab04c, #82d265);
                color: #fff;
                border-radius: 8px;
                cursor: pointer;
                font-size: 16px;
                font-weight: 600;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(106, 176, 76, 0.3);
                position: relative;
                overflow: hidden;

                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -100%;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(90deg,
                            rgba(255, 255, 255, 0),
                            rgba(255, 255, 255, 0.3),
                            rgba(255, 255, 255, 0));
                    transition: left 0.7s ease;
                }

                &:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 7px 20px rgba(106, 176, 76, 0.4);

                    &::before {
                        left: 100%;
                    }
                }

                &:active {
                    transform: translateY(-1px);
                }
            }

            .license-selection {
                margin-bottom: 1.5rem;

                select {
                    width: 100%;
                    padding: 12px;
                    border-radius: 8px;
                    border: 1px solid #ddd;
                    font-size: 15px;
                    color: #555;
                    background-color: #f9f9f9;
                    transition: all 0.3s ease;
                    cursor: pointer;

                    &:focus {
                        outline: none;
                        border-color: #6ab04c;
                        box-shadow: 0 0 0 3px rgba(106, 176, 76, 0.2);
                    }
                }
            }

            &.popular {
                border: 2px solid #6ab04c;
                position: relative;
                transform: scale(1.08);
                z-index: 10;
                box-shadow: 0 15px 40px -10px rgba(106, 176, 76, 0.3);

                @media (max-width: 768px) {
                    transform: scale(1.04);
                }

                span {
                    position: absolute;
                    top: -20px;
                    left: 50%;
                    transform: translateX(-50%);
                    background: linear-gradient(to right, #6ab04c, #82d265);
                    color: #fff;
                    padding: 6px 25px;
                    font-size: 16px;
                    font-weight: 600;
                    border-radius: 30px;
                    box-shadow: 0 5px 15px rgba(106, 176, 76, 0.3);
                }

                .price {
                    color: #559b39;
                }

                button {
                    background: linear-gradient(to right, #559b39, #6ab04c);
                }
            }

            &:hover:not(.popular) {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);

                h2::after {
                    transform: scaleX(1);
                }
            }

            // Free plan specific styling
            &:first-child {
                button {
                    background: linear-gradient(to right, #7a7a7a, #999999);
                    box-shadow: 0 4px 15px rgba(122, 122, 122, 0.3);

                    &:hover {
                        box-shadow: 0 7px 20px rgba(122, 122, 122, 0.4);
                    }
                }

                .price {
                    color: #7a7a7a;
                }

                h2::after {
                    background: #7a7a7a;
                }
            }

            // Upcoming plan specific styling
            &:last-child {
                button {
                    background: linear-gradient(to right, #9b59b6, #b575d1);
                    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);

                    &:hover {
                        box-shadow: 0 7px 20px rgba(155, 89, 182, 0.4);
                    }
                }

                .price {
                    color: #9b59b6;
                }

                h2::after {
                    background: #9b59b6;
                }
            }
        }
    }

    .wcs_popup_overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        z-index: 999;
    }
}