/* Modern Grid Layout */
        .license-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
            margin-bottom: 40px;
        }

        /* Sleek Card Design */
        .bento-card {
            background: #ffffff;
            border: 1px solid #e5e5e5;
            border-radius: 16px;
            padding: 25px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 200px;
        }

        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: #000;
        }

        /* Active State (Dark Mode Switch) */
        .bento-card.selected {
            background: #111;
            color: #fff;
            border-color: #111;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* Text Styles inside Card */
        .bento-card .badge-top {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            opacity: 0.6;
            margin-bottom: 10px;
            display: block;
        }

        .bento-card h4 {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 5px 0;
            line-height: 1.3;
        }

        .bento-card .price {
            font-size: 32px;
            font-weight: 800;
            margin: 10px 0;
            letter-spacing: -0.5px;
        }

        .bento-card .desc {
            font-size: 13px;
            line-height: 1.5;
            opacity: 0.8;
        }

        /* Checkmark */
        .bento-card .check-circle {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 20px;
            height: 20px;
            border: 2px solid #ddd;
            border-radius: 50%;
            transition: all 0.2s;
        }
        
        .bento-card.selected .check-circle {
            background: #fff;
            border-color: #fff;
        }
        
        .bento-card.selected .check-circle::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #000;
            font-size: 12px;
            font-weight: bold;
        }

        /* Form Container */
        .form-panel {
            background: #fcfcfc;
            border: 1px solid #eee;
            border-radius: 16px;
            padding: 40px;
            margin-top: 40px;
        }

        /* Custom Button */
        .btn-sleek {
            background: #000;
            color: #fff;
            border: none;
            padding: 18px;
            border-radius: 8px;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            text-transform: uppercase;
            font-size: 14px;
        }
        .btn-sleek:hover {
            background: #333;
            transform: translateY(-2px);
            color: #fff;
        }
        
        .hidden { display: none !important; }