.order-container{
max-width: 1600px;
padding: 40px 15px 0;
  margin: 0 auto;
  width: 100%;
}
 .user-selector {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            padding: 20px;
            max-width: 400px;
            margin-right: auto;
        }

        .user-selector label {
            font-weight: 600;
            color: #4a5568;
        }

        .user-select {
            padding: 12px 5px 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .user-select:focus {
            outline: none;
            border-color: #3182ce;
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 100px;
        }

        .pricing-card {
            background: white;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }
        .pricing-card.popular {
            border-color: #3465df;
            transform: scale(1.05);
        }

        .pricing-card.premium {
            border-color: #805ad5;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #3465df;
            color: white;
            padding: 8px 24px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .premium-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #805ad5;
            color: white;
            padding: 8px 24px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .card-header {
            text-align: center;
            margin-bottom: 30px;
            background: white;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2d3748;
        }

        .price-section {
            margin-bottom: 30px;
        }
      .custom-price {
            font-size: 2rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 5px;
        }
        .buy-button {
            width: 100%;
            padding: 16px 24px;
            background: #000;
            color: white;
            border: none;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            display: block;
            text-align: center;
        }

        .buy-button:hover {
            background: #2d3748;
            color: white;
        }

        .buy-button.ultimate {
            background: #3465df;
        }

        .buy-button.ultimate:hover {
            background: #2c5aa0;
        }

        .buy-button.enterprise {
            background: #3465df;
        }

        .buy-button.enterprise:hover {
            background: #3674F9;
        }

        .buy-button.premium-btn {
            background: #805ad5;
        }

        .buy-button.premium-btn:hover {
            background: #6b46c1;
        }

        .features-list {
            list-style: none;
            padding: 0;
        }

        .features-list li {
            display: flex;
            align-items: center;
            padding: 8px 0;
            font-size: 0.95rem;
            color: #4a5568;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            background: #48bb78;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 0.75rem;
            font-weight: bold;
        }

        .check-icon::before {
            content: '✓';
        }

        .features-comparison {
            background: white;
            padding: 40px;
            margin-bottom: 60px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 10px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #718096;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .comparison-table th {
            background: #f7fafc;
            padding: 20px 15px;
            text-align: center;
            font-weight: 600;
            color: #2d3748;
            border-bottom: 2px solid #e2e8f0;
            font-size:1.6rem;
        }

        .comparison-table th:first-child {
            text-align: left;
            width: 35%;
        }

        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid #e2e8f0;
            vertical-align: middle;
        }

        .module-button {
            background: none;
            border: none;
            font-size: 1.4rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            transition: color 0.3s ease;
            width: 100%;
            text-align: left;
        }
        .chevron {
            font-size: 1.4rem;
            transition: transform 0.3s ease;
        }

        .feature-icon {
            font-size: 1.25rem;
            font-weight: bold;
        }

        .check-mark {
            color: #48bb78;
        }

        .x-mark {
            color: #f56565;
        }

        .module-details {
            display: none;
        }

        .module-details.show {
            display: table-row;
        }

        .details-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 10px 0;
        }


        .detail-item {
            display: flex;
            align-items: center;
            font-size: 1.2rem;
            color: #4a5568;
            padding: 8px 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .detail-item:last-child {
            border-bottom: none;
        }

        .detail-dot {
            width: 8px;
            height: 8px;
            background: #3182ce;
            border-radius: 50%;
            margin-right: 12px;
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .pricing-card.popular {
                transform: none;
            }

            .comparison-table {
                font-size: 0.875rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 10px 8px;
                font-size: 0.95rem;
            }
            .module-button{
            font-size:0.95rem;
            }
            .detail-item{
             font-size:0.875rem;
            }
        }
         @media (min-width: 1200px) {
         .details-grid{
         padding: 10px 50px 0;
         }
         }
.table-container {
    margin: 10px 0;
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
}

.billed-annually {
    font-size: 0.875rem;
    color: #718096;
    margin-top: 5px;
}

.price-details {
    font-size: 0.75rem;
    color: #718096;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
}

.price-unit {
    font-size: 0.875rem;
    color: #718096;
    margin-left: 2px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
}

.custom-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.custom-description {
    font-size: 0.875rem;
    color: #718096;
    margin-top: 5px;
    font-style: italic;
}

.buy-button.custom-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    display: block;
  text-align: center;
  color: white;
}

.buy-button.custom-btn:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Table center alignment */
.comparison-table td:not(:first-child) {
    text-align: center;
}
.chevron::before {
  content: "+";
  font-weight: bold;
  display: inline-block;
  width: 1em;
  text-align: center;
  transition: transform 0.2s ease;
}

.chevron.open::before {
  content: "−";
}
