

        .pricing-wrapper {
            background-color: #1a1a1a;
            color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .pricing-container {
            max-width: 1200px;
            width: 100%;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .pricing-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .pricing-header p {
            color: #aaa;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .pricing-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .card {
            width: 320px;
            display: flex;
            flex-direction: column;
            border-radius: 0.5rem;
            background-color: rgba(30, 30, 30, 1);
            padding: 1.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .header {
            display: flex;
            flex-direction: column;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #333;
        }

        .title {
            font-size: 1.5rem;
            line-height: 2rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price {
            font-size: 3rem;
            line-height: 1;
            font-weight: 700;
            color: #fff;
            margin-top: 0.5rem;
        }

        .price span {
            font-size: 1.5rem;
            vertical-align: super;
        }

        .desc {
            margin-top: 0.75rem;
            margin-bottom: 0.75rem;
            line-height: 1.625;
            color: rgba(156, 163, 175, 1);
            min-height: 60px;
        }

        .lists {
            margin-bottom: 1.5rem;
            flex: 1 1 0%;
            color: rgba(156, 163, 175, 1);
        }

        .list {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            margin-left: 0.5rem;
        }

        .list svg {
            height: 1.2rem;
            width: 1.2rem;
            flex-shrink: 0;
            margin-right: 0.5rem;
            color: #e65a50;
        }

        .action {
            border: none;
            outline: none;
            display: inline-block;
            border-radius: 0.25rem;
            background-color: #e65a50;
            padding: 0.75rem 1.25rem;
            text-align: center;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            box-shadow: 0 0 15px rgba(230, 90, 80, 0.5);
        }

        .action:hover {
            background-color: #d44a40;
            box-shadow: 0 0 20px rgba(230, 90, 80, 0.7);
        }

        .secondary {
            background-color: #555555;
            box-shadow: 0 0 15px rgba(85, 85, 85, 0.5);
        }

        .secondary:hover {
            background-color: #444444;
            box-shadow: 0 0 20px rgba(85, 85, 85, 0.7);
        }

        .contact-btn {
            background-color: transparent;
            border: 2px solid #555555;
            color: #fff;
            box-shadow: none;
        }

        .contact-btn:hover {
            background-color: #555555;
            box-shadow: 0 0 15px rgba(85, 85, 85, 0.5);
        }

        .popular {
            position: relative;
            overflow: hidden;
            border: 1px solid #e65a50;
        }

        .popular::before {
            content: "MOST POPULAR";
            position: absolute;
            top: 0;
            right: 0;
            background: #e65a50;
            color: white;
            font-size: 0.7rem;
            font-weight: bold;
            padding: 0.3rem 1.5rem;
            transform: rotate(45deg) translateX(1rem) translateY(-1rem);
            width: 150px;
            text-align: right;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .pricing-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .card {
                width: 100%;
                max-width: 400px;
                margin-bottom: 1.5rem;
            }
            
            .pricing-header h1 {
                font-size: 2rem;
            }
        }

        /* Toggle for mobile view */
        .mobile-toggle {
            display: none;
        }

        @media (max-width: 480px) {
            .mobile-toggle {
                display: flex;
                justify-content: center;
                margin-bottom: 1.5rem;
                background-color: #333;
                border-radius: 30px;
                padding: 0.3rem;
                width: 100%;
                max-width: 400px;
            }
            
            .toggle-option {
                padding: 0.7rem 1.5rem;
                border-radius: 30px;
                cursor: pointer;
                text-align: center;
                flex: 1;
                font-weight: 600;
                transition: all 0.3s ease;
            }
            
            .toggle-option.active {
                background-color: #e65a50;
                box-shadow: 0 0 10px rgba(230, 90, 80, 0.5);
            }
            
            .card {
                display: none;
            }
            
            #starter-toggle:checked ~ .pricing-cards #starter-card,
            #professional-toggle:checked ~ .pricing-cards #professional-card,
            #business-toggle:checked ~ .pricing-cards #business-card {
                display: flex;
            }
        }