
    .pricing-hero-section {
        background: #f5633e;
        padding: 80px 0;
        margin-top: 50px;
        position: relative;
        overflow: hidden;
    }
    
    .pricing-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff10" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,144C672,139,768,149,864,170.7C960,192,1056,224,1152,213.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
        background-size: cover;
        opacity: 0.1;
    }
    
    .pricing-hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        color: white;
    }
    
    .pricing-hero-title {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .pricing-hero-subtitle {
        font-size: 20px;
        opacity: 0.95;
        margin-bottom: 30px;
    }
    
    .pricing-badges {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .pricing-badge-item {
        background: rgba(255,255,255,0.2);
        padding: 10px 25px;
        border-radius: 50px;
        backdrop-filter: blur(10px);
        font-weight: 500;
    }
    
    .modern-pricing-section {
        background: #ffffff;
        padding: 80px 0;
    }
    
    .pricing-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .pricing-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .pricing-card-modern {
        background: #ffffff;
        border-radius: 20px;
        padding: 40px;
        position: relative;
        border: 2px solid #e5e5e5;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }
    
    .pricing-card-modern.popular {
        border-color: #f5633e;
        transform: scale(1.02);
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    }
    
    .pricing-card-modern.popular::before {
        content: 'MOST POPULAR';
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: #f5633e;
        color: white;
        padding: 5px 20px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    .pricing-card-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        border-color: #f5633e;
    }
    
    .pricing-card-modern.popular:hover {
        transform: scale(1.02) translateY(-5px);
    }
    
    .package-header {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .package-name {
        font-size: 28px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
    }
    
    .package-price {
        font-size: 48px;
        font-weight: 700;
        color: #f5633e;
        margin-bottom: 10px;
    }
    
    .package-price small {
        font-size: 20px;
        opacity: 0.8;
    }
    
    .package-description {
        color: #6c757d;
        font-size: 14px;
    }
    
    .package-features {
        list-style: none;
        padding: 0;
        margin: 30px 0;
    }
    
    .package-features li {
        padding: 12px 0;
        color: #495057;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #e9ecef;
    }
    
    .package-features li:last-child {
        border-bottom: none;
    }
    
    .package-features li::before {
        content: '✓';
        color: #28a745;
        font-weight: bold;
        margin-right: 12px;
        font-size: 18px;
    }
    
    .btn-get-started {
        background: #f5633e;
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        border: none;
        font-weight: 600;
        width: 100%;
        text-align: center;
        display: inline-block;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .btn-get-started:hover {
        background: #5569d0;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        color: white;
    }
        
            .order-steps-list {
                max-width: 700px;
                margin: 50px auto;
            }
            
            .order-step-row {
                display: flex;
                align-items: center;
                background: #ffffff;
                padding: 25px;
                margin-bottom: 20px;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
                transition: all 0.3s ease;
            }
            
            .order-step-row:hover {
                box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
                transform: translateX(5px);
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                background: #f5633e;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 20px;
                font-weight: bold;
                flex-shrink: 0;
                margin-right: 25px;
            }
            
            .step-content {
                flex: 1;
            }
            
            .step-content h4 {
                color: #2c3e50;
                font-size: 18px;
                margin: 0 0 5px 0;
                font-weight: 600;
            }
            
            .step-content p {
                color: #6c757d;
                font-size: 14px;
                margin: 0;
                line-height: 1.5;
            }
            
            @media (max-width: 600px) {
                .order-step-row {
                    padding: 20px 15px;
                }
                
                .step-number {
                    width: 40px;
                    height: 40px;
                    font-size: 18px;
                    margin-right: 15px;
                }
                
                .step-content h4 {
                    font-size: 16px;
                }
            }
