 .price{
     background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
            color: white;
            padding: 60px 20px;
 }
 .price_container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .price_header {
            text-align: center;
            margin-bottom: 60px;
        }

        .price_badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .price_main_title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .price_main_title .price_highlight {
            color: #4a9eff;
        }

        .price_subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .price_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .price_card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 40px 30px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .price_card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .price_card.price_featured {
            background: linear-gradient(135deg, rgba(74, 158, 255, 0.15) 0%, rgba(26, 26, 46, 0.8) 100%);
            border-color: #4a9eff;
            transform: scale(1.05);
        }

        .price_card.price_featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #4a9eff, #64b5ff);
        }

        .price_plan_header {
            text-align: center;
            margin-bottom: 30px;
        }

        .price_plan_name {
            font-size: 18px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 10px;
        }

        .price_plan_price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .price_amount {
            font-size: 42px;
            font-weight: 700;
            color: white;
        }

        .price_period {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        .price_contact {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
        }

        .price_contact_subtitle {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .price_plan_description {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin-bottom: 25px;
        }

        .price_cta_button {
            width: 100%;
            background: linear-gradient(135deg, #4a9eff, #64b5ff);
            border: none;
            padding: 14px 20px;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .price_cta_button:hover {
            background: linear-gradient(135deg, #3a8eef, #54a5ef);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(74, 158, 255, 0.3);
        }

        .price_billing_info {
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 30px;
        }

        .price_features_section {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
        }

        .price_features_title {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }

        .price_feature_item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }

        .price_feature_check {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #4a9eff, #64b5ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .price_feature_check::after {
            content: '✓';
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .price_feature_text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .price_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .price_card.price_featured {
                transform: none;
            }
            
            .price_main_title {
                font-size: 36px;
            }
        }