 /* Modern CSS Reset */
        :root {
            --primary: #039bff;
            --primary-light: #e6f0ff;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #38b000;
            --transition: all 0.3s ease;
        }
        .swal2-custom-width {
    width: 500px !important;
    max-width: 80% !important;
}



  #errorpage {
    min-height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
    padding: 0; /* Remove extra padding */
  }

  #errorpage .container {
    text-align: center;
  }

        .hide-text { color: rgb(252 252 253 / var(--tw-bg-opacity)); }
        
    .faq-container { max-width: 1000px; width: 100%; margin: 0 auto; }

    .faq-item {
      border-bottom: 1px solid #e5e7eb;
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 1.25rem 1rem;
      text-align: left;
      background: transparent;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      color: #039bff;
      font-weight: 600;
      max-width: 1000px;
      text-align: left;
    }

    .faq-icon {
      width: 1.25rem;
      height: 1.25rem;
      color: #6b7280;
      transition: transform 0.2s ease;
    }

    .faq-question[aria-expanded="true"] .faq-icon {
      transform: rotate(180deg);
    }

    .faq-answer {
      padding: 0 1rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      text-align: left;
    }

    .faq-item.active .faq-answer {
      padding: 0 1rem 1.25rem;
      max-height: 500px;
    }

        
        /* Services Section - Modern Design */
        .services-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, #ffffff 0%, #f9fbfd 100%);
            position: relative;
            overflow: hidden;
        }
        
        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyMjAsMjIwLDIyMCwwLjMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIiBvcGFjaXR5PSIwLjEiLz48L3N2Zz4=');
            opacity: 0.3;
            z-index: 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .section-tag {
            display: inline-block;
            background-color: var(--primary-light);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 50px;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            /*background: linear-gradient(to right, var(--dark) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;*/
            color: rgb(30 37 52 / var(--tw-text-opacity));
            margin-left: auto;
            margin-right: auto;
        }

        .c2a {
            color: #fff;
        }
        
        .section-subtitle {
            color: var(--gray);
/*            font-size: 18px;*/
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .service-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--primary);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary-light);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            color: var(--primary);
            font-size: 32px;
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon {
            transform: rotate(5deg) scale(1.1);
            background-color: var(--primary);
            color: white;
        }
        
        .service-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .service-description {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.7;
        }


        /* Clean Modern Pricing Styles */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .modern-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modern-pricing-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dark .modern-pricing-card {
    background: #1e2534;
    border-color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modern-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.modern-pricing-card.featured {
    border: 2px solid #039bff;
    position: relative;
}

.modern-pricing-card.enterprise {
    border: 1px solid #4bde80;
}

.modern-pricing-card.enterprise:hover {
    border-color: rgb(34 197 94 / var(--tw-bg-opacity));
}

.card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #039bff;
    color: white;
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
}

.plan-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
        background: #f0f9ff;
    color: var(--primary);
}

.plan-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.dark .plan-title {
    color: white;
}

.plan-description {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-price {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.dark .card-price {
    border-bottom-color: #374151;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.dark .price-amount {
    color: white;
}

.price-period {
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
}

.price-note {
    font-size: 13px;
}

.card-features {
    flex-grow: 1;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--dark);
    line-height: 1.4;
    text-align: left;
}

.dark .feature-item {
    color: #d1d5db;
}

.feature-icon {
    width: 16px;
    height: 16px;
    color: #4bde80;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item strong {
    color: var(--dark);
    font-weight: 600;
}

.dark .feature-item strong {
    color: white;
}

/* Simple Show More Feature */
.show-more-container {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
    text-align: left;
}

.dark .show-more-container {
    border-top-color: #374151;
}

.show-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.show-more-btn:hover {
    color: #0384e4;
}

.show-more-btn.expanded svg {
    transform: rotate(180deg);
}

.show-more-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Additional Features Container */
.additional-features {
    margin-top: 12px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.additional-features.show {
    opacity: 1;
    max-height: 1000px;
}

/* Simple fade in for new features */
.additional-features.show .feature-item {
    animation: simpleFadeIn 0.3s ease forwards;
    animation-delay: calc(var(--item-index) * 0.05s);
    opacity: 0;
}

@keyframes simpleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-cta {
    margin-top: auto;
    text-align: center;
}

/* Modern Buttons */
.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    text-align: center;
}

.modern-btn-primary {
    background: #039bff;
    color: white;
}

.modern-btn-primary:hover {
    background: #0284e4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 155, 255, 0.2);
    color: #fff;
}

.modern-btn-outline {
    background: transparent;
    border-color: #039bff;
    color: #039bff;
}

.modern-btn-outline:hover {
    background: #039bff;
    color: white;
    transform: translateY(-2px);
}

.modern-btn-enterprise {
    background: #4bde80;
    color: white;
    font-size: 14px;
    padding: 10px 16px;
}

.modern-btn-enterprise:hover {
    background: rgb(34 197 94 / var(--tw-bg-opacity));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 176, 0, 0.2);
    color: #fff !important;
}

.comparison-note {
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.dark .comparison-note {
    border-top-color: #374151;
}

/* Remove annual toggle section */
.pricing-toggle {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modern-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .modern-pricing-card {
        padding: 20px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .plan-title {
        font-size: 18px;
    }
    
    .modern-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}


 /* Header Styles */
        .pricing-header {
            margin-bottom: 60px;
            max-width: 700px;
        }

        .pricing-badge {
            display: inline-block;
            background-color: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 16px;
        }


        /* Pricing Cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.02);
        }

        .pricing-card.popular::before {
            content: "Most Popular";
            position: absolute;
            top: 20px;
            right: -32px;
            background: var(--primary);
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 30px;
            transform: rotate(45deg);
        }

        .pricing-card-header {
            margin-bottom: 24px;
        }

        .pricing-plan {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .pricing-description {
            color: var(--gray);
            font-size: 15px;
            margin-bottom: 20px;
        }

        .pricing-price {
            margin-bottom: 30px;
        }

        .price-amount {
            font-size: 48px;
            font-weight: 700;
            color: var(--dark);
            line-height: 1;
            margin-bottom: 5px;
        }

        .price-currency {
            font-size: 20px;
            vertical-align: super;
            margin-right: 4px;
            color: var(--dark);
            font-weight: 600;
        }

        .price-interval {
            color: var(--gray);
            font-size: 16px;
        }

        .pricing-features {
            margin-bottom: 30px;
            flex-grow: 1;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .feature-icon {
            color: #4bde80;
            margin-right: 12px;
            font-size: 16px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .pricing-cta {
            margin-top: auto; max-width: fit-content;
        }

        .btn-primary {     background: #109dff;
    padding: 20px;
    max-width: fit-content;
    border-radius: 5px;
    color: #fff; }

    .btn-primary:hover { --tw-bg-opacity: 1;
    background-color: rgb(0 133 220 / var(--tw-bg-opacity));
    padding: 20px;
    max-width: fit-content;
    border-radius: 5px;
    color: #fff; }


        .btn-enterprise {     background: rgb(74 222 128 / var(--tw-bg-opacity));
    padding: 20px;
    max-width: fit-content;
    border-radius: 5px;
    color: #fff; }

    .btn-enterprise:hover {     --tw-bg-opacity: 1;
    background-color: rgb(34 197 94 / var(--tw-bg-opacity)); color: #fff; }


        /* Responsive adjustments */

        @media (min-width: 768px) and (max-width: 1024px) {
    .price-amount {
        font-size: 32px;
    }



    .pricing-cta {
        text-align: center;
        display: inline-block;
        margin: 0 auto;
    }
}


        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .section-title {
                font-size: 28px;
            }
    .card-header { text-align: left; }
         .price-note { text-align: left; }   
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .section-title {
                font-size: 36px;
            }

    .card-header { text-align: left; }
.price-note { text-align: left; }
               .feature-item {
        display: flex;
    }
        }
        
        @media (max-width: 768px) {
            .services-section {
                padding: 70px 0;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .service-card {
                padding: 30px;
            }

          .price-amount {
        font-size: 32px;
    }

    .feature-item {
        display: flex;
    }



    .pricing-cta {
        text-align: center;
        display: inline-block;
        margin: 0 auto;
    }

    .card-header { text-align: left; }
    .price-note { text-align: left; }

        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 28px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            .show-more-container { text-align: center; }

            .price-amount { font-size: 32px; }

       



            .pricing-cta {     text-align: center;
    display: inline-block;
    margin: 0 auto; }

    .card-header { text-align: left; }
.price-note { text-align: left; }

        }