"use client";

import React, { createContext, useContext, useState, useEffect } from "react";

type Language = "en" | "ar";

interface LanguageContextType {
  language: Language;
  setLanguage: (lang: Language) => void;
  t: (key: string) => string;
}

const LanguageContext = createContext<LanguageContextType | undefined>(undefined);

const LANG_COOKIE = "skylight_lang";

export function LanguageProvider({
  children,
  initialLanguage = "ar",
}: {
  children: React.ReactNode;
  /** Resolved on the server from the locale path header so SSR matches the URL. */
  initialLanguage?: Language;
}) {
  // Start from the same value the server rendered with — this is what prevents
  // the hydration mismatch (and the resulting client-side exception).
  const [language, setLanguageState] = useState<Language>(initialLanguage);

  const setLanguage = (lang: Language) => {
    setLanguageState(lang);
    if (typeof window !== "undefined") {
      localStorage.setItem(LANG_COOKIE, lang);
      document.cookie = `${LANG_COOKIE}=${lang}; path=/; max-age=${60 * 60 * 24 * 365}; samesite=lax`;
    }
  };

  // Synchronize localStorage and cookie with the active server-rendered language on mount
  useEffect(() => {
    if (typeof window !== "undefined") {
      localStorage.setItem(LANG_COOKIE, language);
      document.cookie = `${LANG_COOKIE}=${language}; path=/; max-age=${60 * 60 * 24 * 365}; samesite=lax`;
    }
  }, [language]);

  useEffect(() => {
    // Apply RTL for Arabic
    if (language === "ar") {
      document.documentElement.dir = "rtl";
      document.documentElement.lang = "ar";

      // Remove English font override when switching to Arabic
      const existingEnStyle = document.getElementById('english-font-style');
      if (existingEnStyle) existingEnStyle.remove();
      
      // Apply IBM Plex Sans Arabic font to all elements
      const style = document.createElement('style');
      style.id = 'arabic-font-style';
      style.innerHTML = `
        body,
        body *,
        h1, h2, h3, h4, h5, h6,
        p, span, div, a, button,
        input, textarea, select,
        label, li, td, th {
          font-family: 'IBM Plex Sans Arabic', sans-serif !important;
        }
        
        /* RTL support for lists */
        ul, ol {
          direction: rtl !important;
          text-align: right !important;
          margin-right: 0 !important;
          margin-left: 0 !important;
        }
        
        ul li, ol li {
          text-align: right !important;
          direction: rtl !important;
          list-style-position: inside !important;
        }
        
        /* Ensure list markers are on the right */
        ul li::marker, ol li::marker {
          unicode-bidi: isolate;
          text-align: right;
        }

        /* Fix for nested lists */
        ul ul, ol ol, ul ol, ol ul {
          margin-right: 20px !important;
          margin-left: 0 !important;
        }

        /* Specific fix for footer lists */
        .azzle-footer-menu2 ul,
        .azzle-footer-menu2 ul li {
          direction: rtl !important;
          text-align: right !important;
        }

        /* Fix for header lists */
        .azzle-header-login-button ul,
        .azzle-header-login-button ul li {
          direction: rtl !important;
          text-align: right !important;
        }

        /* Social links in footer */
        .azzle-social-wrap ul,
        .azzle-social-wrap ul li {
          direction: rtl !important;
          text-align: right !important;
        }

        /* About section lists */
        .azzle-listicon-wrap2 ul,
        .azzle-listicon-wrap2 ul li {
          direction: rtl !important;
          text-align: right !important;
        }

        /* Fix bullet points position for RTL - move from left to right */
        .azzle-listicon-wrap2 ul li {
          padding-left: 0 !important;
          padding-right: 30px !important;
        }
        
        .azzle-listicon-wrap2 ul li::before {
          left: auto !important;
          right: 0 !important;
        }

        /* General RTL fix for any unordered lists with default bullets */
        html[dir="rtl"] ul:not([class]) li,
        html[dir="rtl"] ol:not([class]) li {
          padding-left: 0 !important;
          padding-right: 1.5em !important;
          list-style-position: inside !important;
        }

        /* Fix for lists with custom pseudo-element bullets */
        html[dir="rtl"] ul li::before,
        html[dir="rtl"] ol li::before {
          left: auto !important;
          right: 0 !important;
        }

        /* Ensure list items don't have left padding in RTL */
        html[dir="rtl"] li {
          padding-left: 0 !important;
        }

        /* Fix for blog details list bullets */
        ul.azzle-blog-details-list li {
          padding-left: 0 !important;
          padding-right: 24px !important;
        }
        
        ul.azzle-blog-details-list li::before {
          left: auto !important;
          right: 5px !important;
        }

        /* Fix for azzle-listicon-wrap (uses flexbox with icons) */
        .azzle-listicon-wrap ul li {
          flex-direction: row-reverse !important;
        }

        /* Fix for footer menu lists - override generic RTL list rule (no bullets in footer) */
        html[dir="rtl"] .azzle-footer-menu2 ul {
          padding-inline-start: 0;
          padding-right: 0 !important;
        }
        html[dir="rtl"] .azzle-footer-menu2 ul li {
          padding-left: 0 !important;
          padding-right: 0 !important;
        }
      `;
      document.head.appendChild(style);
    } else {
      document.documentElement.dir = "ltr";
      document.documentElement.lang = "en";

      // Remove Arabic font style
      const existingArabicStyle = document.getElementById('arabic-font-style');
      if (existingArabicStyle) existingArabicStyle.remove();

      // Inject Clash Display for all English elements
      if (!document.getElementById('english-font-style')) {
        const enStyle = document.createElement('style');
        enStyle.id = 'english-font-style';
        enStyle.innerHTML = `
          body,
          body *,
          h1, h2, h3, h4, h5, h6,
          p, span, div, a, button,
          input, textarea, select,
          label, li, td, th {
            font-family: 'Clash Display', sans-serif !important;
          }
        `;
        document.head.appendChild(enStyle);
      }
    }
    
    return () => {
      // Cleanup on unmount
      const arabicStyle = document.getElementById('arabic-font-style');
      if (arabicStyle) arabicStyle.remove();
      const englishStyle = document.getElementById('english-font-style');
      if (englishStyle) englishStyle.remove();
    };
  }, [language]);

  const t = (key: string): string => {
    return translations[language]?.[key] || key;
  };

  return (
    <LanguageContext.Provider value={{ language, setLanguage, t }}>
      {children}
    </LanguageContext.Provider>
  );
}

export function useLanguage() {
  const context = useContext(LanguageContext);
  if (context === undefined) {
    throw new Error("useLanguage must be used within a LanguageProvider");
  }
  return context;
}

// Translations
const translations: Record<Language, Record<string, string>> = {
  en: {
    // Metadata
    "meta.title": "SkyLight Chat - AI-Powered Chatbot Platform",
    "meta.description": "SkyLight Chat helps teams organize supported messaging channels, knowledge, human handoff, campaigns, and Halla voice workflows.",

    // Hero Section
    "hero.title": "Organize customer conversations with AI",
    "hero.description": "Connect supported channels, define knowledge and actions, keep people in control of exceptions, and measure the workflow against your own service goals.",
    "hero.cta": "Explore SkyLight Chat",

    // Features Section
    "features.title": "Build a workflow your team can test",
    "features.feature1.title": "Multi-language and dialect support",
    "features.feature1.description": "Configure the required languages, then test each dialect and mixed-language path with native speakers.",
    "features.feature2.title": "Intent, task, and tone controls",
    "features.feature2.description": "Define supported intents, permitted actions, response tone, confidence boundaries, and escalation rules.",
    "features.feature3.title": "Relevant customer context",
    "features.feature3.description": "Use only the context and history permitted by your identity, access, minimization, and retention rules.",

    // About Section 1
    "about1.title": "Give the agent a bounded job",
    "about1.description": "Design its tone and rules for your audience and risk level.",
    "about1.list1": "Write a brief with tasks, approved sources, prohibited actions, and success measures.",
    "about1.list2": "Enable only supported channels and integrations required for the pilot.",
    "about1.list3": "Keep a named human owner responsible for review, exceptions, and rollback.",

    // About Section 2
    "about2.title": "Test repetitive workflows first",
    "about2.description": "Start with low-risk FAQs or routing, measure accuracy and handoff, and expand only when the evidence supports it.",
    "about2.list1": "Measure response time, factual accuracy, and unresolved cases.",
    "about2.list2": "Set queue, concurrency, timeout, and provider-failure rules.",
    "about2.list3": "Escalate sensitive, uncertain, or unsupported requests to a person.",

    // About Section 3
    "about3.title": "Ground answers in reviewed sources",
    "about3.description1": "Add approved business, product, service, and policy material with an owner and review date.",
    "about3.description2": "Test retrieval, stale information, missing evidence, and human fallback before connecting customer traffic.",
    "about3.cta": "Start a controlled pilot",

    // Brand Section
    "brand.title": "Integrates with your favorite channels",
    "brand.description": "Review the channels available in your plan, provider account, region, and configuration, then test identity and handoff across them.",
    "brand.list1": "Supported messaging and voice channels",
    "brand.list2": "Shared inbox and customer context options",
    "brand.cta": "Review integrations",


    // FAQ Section
    "partnerSpotlight.label": "Partner",
    "partnerSpotlight.hrwhats": "Also discover our partner for official verified WhatsApp services",
    "faq.title": "SkyLight Chat FAQs for more information",
    "faq1.question": "What is SkyLight Chat and how does it integrate with messaging channels?",
    "faq1.answer": "SkyLight Chat is a customer-engagement platform for supported messaging, web, and Halla voice workflows. Channel, provider, region, and plan availability vary; confirm the exact connection method and permissions in current documentation and a controlled demo.",
    "faq2.question": "How does the Knowledge Base 2.0 learn about my business?",
    "faq2.answer": "You can add supported documents, text, or web sources to a knowledge base. Assign an owner, remove obsolete material, test citations and permissions, and verify the file, crawling, image, and audio capabilities enabled for your account.",
    "faq3.question": "What is SkylightTalk and can the AI send voice notes?",
    "faq3.answer": "SkylightTalk and Halla provide voice-related options in supported configurations. Confirm channel and plan availability, obtain the rights and consent required for any voice sample, disclose synthetic audio where required, and test quality and fallback before use.",
    "faq4.question": "How does the AI Booking & Ordering system work?",
    "faq4.answer": "Booking and order workflows can use configured services, resources, schedules, and integrations. Test availability conflicts, identity, confirmation, duplicate requests, cancellation, reminders, and human fallback for the setup selected.",
    "faq5.question": "Can I run outbound marketing campaigns with SkyLight Chat?",
    "faq5.answer": "Campaign features can support eligible contact segments and approved templates. The sender remains responsible for permission, provider policy, template category, quiet hours, frequency, accurate personalization, opt-out synchronization, and result measurement.",
    "faq6.question": "Is there a human handoff feature when the AI cannot answer?",
    "faq6.answer": "Human-review rules can route direct requests, uncertainty, or sensitive cases to a configured queue. Test that only relevant, permitted context is transferred and that failed or delayed handoffs have a fallback.",
    "faq7.question": "How does the AI handle customer inquiries about orders and products?",
    "faq7.answer": "For a supported Salla or Zid setup, test the exact order, tracking, inventory, cart, and product fields available. Verify customer identity before exposing order data and route missing, stale, or conflicting results to a person.",
    "faq8.question": "Does SkyLight Chat support LinkedIn automation?",
    "faq8.answer": "LinkedIn-related workflows depend on current provider access, account permissions, region, and plan. Confirm approved sourcing, outreach, and recruiting operations, follow LinkedIn policies, and keep people responsible for employment decisions.",
    "faq9.question": "How secure is SkyLight Chat and does it have an API for developers?",
    "faq9.answer": "Request current documentation for authentication, roles, tenant separation, logging, retention, deletion, subprocessors, incidents, and SSO availability. Developers should use only the endpoints, webhooks, limits, and verification methods documented for their plan.",
    "faq10.question": "What is Halla, and how does it handle voice calls and missed-call recovery?",
    "faq10.answer": "Halla is SkyLight Chat's voice and VoIP product. Confirm number, inbound, outbound, recording, regional, and plan availability. Test caller notice, Arabic and English quality, latency, interruption, actions, human transfer, and permission-aware missed-call follow-up.",

    // Illustrative workflow examples (not customer testimonials)
    "testimonial.title": "Example Workflows",
    "testimonial1.quote": "Connect Salla and WhatsApp support.",
    "testimonial1.text": "An ecommerce team can answer product and order questions, recover carts, and route exceptions to a person from one inbox.",
    "testimonial1.name": "Illustrative example",
    "testimonial1.title": "Ecommerce workflow",
    "testimonial2.quote": "Coordinate appointment booking.",
    "testimonial2.text": "A clinic can check available slots, send reminders, collect approved information, and keep staff in control of sensitive requests.",
    "testimonial2.name": "Illustrative example",
    "testimonial2.title": "Booking workflow",
    "testimonial3.quote": "Organize candidate outreach.",
    "testimonial3.text": "A recruiting team can coordinate outreach, collect applications, summarize candidate information, and schedule interviews with human review.",
    "testimonial3.name": "Illustrative example",
    "testimonial3.title": "Recruiting workflow",

    // Pricing Section
    "pricing.title": "Choose Your Perfect Plan",
    "pricing.subtitle": "Scale your business with AI-powered automation. Pick a plan that fits your needs.",
    "pricing.monthly": "Monthly",
    "pricing.yearly": "Yearly",
    "pricing.save": "Save",
    "pricing.perMonth": "per month",
    "pricing.perYear": "per year",
    "pricing.youSave": "You save",
    "pricing.getStarted": "Get Started",
    "pricing.mostPopular": "Most Popular",
    "pricing.whatsIncluded": "What's included",
    "pricing.unlimited": "Unlimited",
    "pricing.basic.name": "Basic",
    "pricing.basic.description": "Try out AI automation with essential features at an affordable price.",
    "pricing.starter.name": "Starter",
    "pricing.starter.description": "Perfect for small businesses just getting started with AI automation.",
    "pricing.professional.name": "Professional",
    "pricing.professional.description": "Ideal for growing businesses that need more power and integrations.",
    "pricing.premium.name": "Premium",
    "pricing.premium.description": "For enterprises requiring maximum capacity and all platform integrations.",
    "pricing.feature.teamMembers": "Team Members",
    "pricing.feature.connections": "Contacts",
    "pricing.feature.conversations": "Conversations",
    "pricing.feature.aiResponses": "AI Responses",
    "pricing.feature.aiTickets": "AI Tickets",
    "pricing.feature.sitePages": "Scraped Site Pages",
    "pricing.feature.flowCreators": "Flow Creators",
    "pricing.feature.mediaFiles": "Media Files",
    "pricing.feature.knowledgeBases": "Knowledge Bases",
    "pricing.feature.channels": "Channels",
    "pricing.feature.paymentLinks": "Payment Links",
    "pricing.feature.bookingsTables": "Bookings & Orders Tables",
    "pricing.feature.webChat": "Web Chat Widget",
    "pricing.feature.voiceMessages": "Voice Messages",
    "pricing.info.teamMembers": "Number of team members who can access and manage the platform",
    "pricing.info.connections": "Maximum number of customer contacts you can store and communicate with",
    "pricing.info.conversations": "Total number of chat conversations per month",
    "pricing.info.aiResponses": "Number of AI-generated responses your chatbot can send monthly",
    "pricing.info.aiTickets": "Support tickets that can be handled by AI automatically",
    "pricing.info.sitePages": "Number of website pages that can be scraped for knowledge base",
    "pricing.info.flowCreators": "Visual flow builders for creating automated conversation paths",
    "pricing.info.mediaFiles": "Number of media files (images, videos) you can upload",
    "pricing.info.knowledgeBases": "Text, voice, document, or website knowledge bases",
    "pricing.info.channels": "Number of communication channels (WhatsApp, Instagram)",
    "pricing.info.paymentLinks": "Create and send payment links directly in conversations",
    "pricing.info.bookingsTables": "Bookings & Orders Tables",
    "pricing.info.webChat": "Embeddable chat widget for your website",
    "pricing.info.voiceMessages": "Smart voice messages responses in conversations",
    "pricing.showingPricesIn": "Showing prices in",
    "pricing.detectingLocation": "Detecting your location...",
    "pricing.showCalculator": "Calculate Custom Price",
    "pricing.hideCalculator": "Hide Calculator",
    "pricing.calculatorTitle": "Custom Price Calculator",
    "pricing.estimatedPrice": "Estimated Monthly Price",
    "pricing.estimationDisclaimer": "This is an estimation only. Actual pricing may vary based on your specific needs and usage patterns. Contact us for a personalized quote.",

    // Use Cases Section
    "useCases.title": "Smart Solutions for Any Industry",
    "useCases.subtitle": "SkyLight Chat is not limited to customer service. Use it in education, healthcare, commerce, real estate, tourism, and any field that needs smart and fast communication.",
    "useCases.keyBenefits": "Key Benefits",
    "useCases.usageExamples": "Usage Examples",
    "useCases.expectedResults": "Expected Results",
    
    // Education
    "useCases.education.name": "Education & Schools",
    "useCases.education.description": "Smart solutions for educational institutions to improve communication with students and parents.",
    "useCases.education.results": "Answer parent questions faster and route complex cases to staff.",
    "useCases.education.benefit1": "Answer admission and registration inquiries",
    "useCases.education.benefit2": "Send appointment and exam reminders",
    "useCases.education.benefit3": "Track student progress and notify parents",
    "useCases.education.benefit4": "Answer common academic questions",
    "useCases.education.example1": "Receive new registrations",
    "useCases.education.example2": "Answer curriculum inquiries",
    "useCases.education.example3": "Send grades and reports",
    "useCases.education.example4": "Organize appointments",
    
    // Tourism
    "useCases.tourism.name": "Travel & Tourism",
    "useCases.tourism.description": "Handle common booking questions outside staffed hours and route exceptions to a person.",
    "useCases.tourism.results": "Handle common booking questions around the clock and hand off exceptions.",
    "useCases.tourism.benefit1": "Instant flight and hotel booking assistance",
    "useCases.tourism.benefit2": "After-hours itinerary information with fallback",
    "useCases.tourism.benefit3": "Automated visa and document guidance",
    "useCases.tourism.benefit4": "Real-time travel updates and alerts",
    "useCases.tourism.example1": "Package inquiries",
    "useCases.tourism.example2": "Booking confirmations",
    "useCases.tourism.example3": "Travel recommendations",
    "useCases.tourism.example4": "Price comparisons",
    
    // Customer Support
    "useCases.support.name": "Customer Support",
    "useCases.support.description": "Transform your customer service with AI-powered support that never sleeps.",
    "useCases.support.results": "Deflect repetitive questions while keeping human escalation available.",
    "useCases.support.benefit1": "Instant response to common questions",
    "useCases.support.benefit2": "Smart ticket routing and prioritization",
    "useCases.support.benefit3": "Multilingual support capabilities",
    "useCases.support.benefit4": "Seamless handoff to human agents",
    "useCases.support.example1": "FAQ automation",
    "useCases.support.example2": "Order status updates",
    "useCases.support.example3": "Complaint handling",
    "useCases.support.example4": "Return requests",
    
    // E-commerce
    "useCases.ecommerce.name": "E-Commerce",
    "useCases.ecommerce.description": "Boost sales with AI shopping assistants that guide customers through their journey.",
    "useCases.ecommerce.results": "Guide shoppers, recover abandoned carts, and surface order updates.",
    "useCases.ecommerce.benefit1": "Product recommendations and comparisons",
    "useCases.ecommerce.benefit2": "Order tracking and updates",
    "useCases.ecommerce.benefit3": "Instant inventory availability",
    "useCases.ecommerce.benefit4": "Personalized shopping assistance",
    "useCases.ecommerce.example1": "Product search",
    "useCases.ecommerce.example2": "Size guidance",
    "useCases.ecommerce.example3": "Checkout support",
    "useCases.ecommerce.example4": "Delivery tracking",
    
    // Healthcare
    "useCases.healthcare.name": "Healthcare",
    "useCases.healthcare.description": "Streamline patient communication and appointment management with AI assistance.",
    "useCases.healthcare.results": "Automate reminders and routine scheduling questions with human oversight.",
    "useCases.healthcare.benefit1": "Appointment scheduling and reminders",
    "useCases.healthcare.benefit2": "Pre-visit form collection",
    "useCases.healthcare.benefit3": "General health information",
    "useCases.healthcare.benefit4": "Lab result notifications",
    "useCases.healthcare.example1": "Book appointments",
    "useCases.healthcare.example2": "Insurance inquiries",
    "useCases.healthcare.example3": "Prescription refills",
    "useCases.healthcare.example4": "Clinic hours",
    
    // Real Estate
    "useCases.realestate.name": "Real Estate",
    "useCases.realestate.description": "Qualify leads and schedule viewings automatically around the clock.",
    "useCases.realestate.results": "Capture inquiries around the clock and route qualified leads quickly.",
    "useCases.realestate.benefit1": "Property availability inquiries",
    "useCases.realestate.benefit2": "Automated viewing scheduling",
    "useCases.realestate.benefit3": "Lead qualification and follow-up",
    "useCases.realestate.benefit4": "Price and feature information",
    "useCases.realestate.example1": "Property search",
    "useCases.realestate.example2": "Schedule viewings",
    "useCases.realestate.example3": "Mortgage calculator",
    "useCases.realestate.example4": "Document requests",

    // Restaurant (Landing Page)
    "useCases.restaurant.name": "Restaurants",
    "useCases.restaurant.description": "Handle reservations, orders, and menu inquiries automatically while staff focuses on service.",
    "useCases.restaurant.results": "Take online orders and reduce missed reservation requests.",
    "useCases.restaurant.benefit1": "Table reservations and waitlist",
    "useCases.restaurant.benefit2": "Online ordering and delivery",
    "useCases.restaurant.benefit3": "Menu info and dietary needs",
    "useCases.restaurant.benefit4": "Catering inquiries",
    "useCases.restaurant.example1": "Book table",
    "useCases.restaurant.example2": "Order food",
    "useCases.restaurant.example3": "Menu info",
    "useCases.restaurant.example4": "Catering",

    // Banking (Landing Page)
    "useCases.banking.name": "Banking",
    "useCases.banking.description": "Route authenticated account inquiries and keep people responsible for sensitive transaction decisions.",
    "useCases.banking.results": "Handle routine service questions and route regulated requests to staff.",
    "useCases.banking.benefit1": "Account balance and history",
    "useCases.banking.benefit2": "Transfers and bill payments",
    "useCases.banking.benefit3": "Loan and card inquiries",
    "useCases.banking.benefit4": "Fraud alerts",
    "useCases.banking.example1": "Check balance",
    "useCases.banking.example2": "Transfer",
    "useCases.banking.example3": "Loan status",
    "useCases.banking.example4": "Card services",

    // HR (Landing Page)
    "useCases.hr.name": "HR & Recruitment",
    "useCases.hr.description": "Streamline hiring, onboarding, and HR inquiries with intelligent automation.",
    "useCases.hr.results": "Shorten initial screening and route employee questions consistently.",
    "useCases.hr.benefit1": "Application screening",
    "useCases.hr.benefit2": "Employee onboarding",
    "useCases.hr.benefit3": "Leave requests",
    "useCases.hr.benefit4": "Benefits inquiries",
    "useCases.hr.example1": "Apply for job",
    "useCases.hr.example2": "Leave request",
    "useCases.hr.example3": "Benefits",
    "useCases.hr.example4": "Payroll",

    // Automotive (Landing Page)
    "useCases.automotive.name": "Automotive",
    "useCases.automotive.description": "Automate test drives, service appointments, and vehicle inquiries.",
    "useCases.automotive.results": "Make test-drive and service booking easier across channels.",
    "useCases.automotive.benefit1": "Test drive scheduling",
    "useCases.automotive.benefit2": "Service appointments",
    "useCases.automotive.benefit3": "Parts availability",
    "useCases.automotive.benefit4": "Financing options",
    "useCases.automotive.example1": "Test drive",
    "useCases.automotive.example2": "Service",
    "useCases.automotive.example3": "Parts",
    "useCases.automotive.example4": "Financing",

    // View All Link
    "useCases.viewAll": "View All 20+ Sectors",

    // Use Cases Page
    "useCasesPage.badge": "Sectors",
    "useCasesPage.title": "Faster responses, easier work whatever your sector",
    "useCasesPage.subtitle": "SkyLight Chat powers intelligent automation across 20+ sectors. From education to healthcare, e-commerce to government services - discover how AI chatbots can transform your business operations and customer experience.",
    "useCasesPage.cta.title": "Ready to Transform Your Business?",
    "useCasesPage.cta.subtitle": "Join thousands of businesses already using SkyLight Chat to automate customer communication",
    "useCasesPage.cta.button": "Start Free Trial",

    // Education Industry
    "useCasesPage.education.name": "Education & Schools",
    "useCasesPage.education.description": "Smart solutions for educational institutions to streamline communication with students, parents, and staff while automating administrative tasks.",
    "useCasesPage.education.results": "Faster answers for routine questions with staff escalation when needed",
    "useCasesPage.education.benefit1": "Automate admission inquiries and enrollment processes",
    "useCasesPage.education.benefit2": "Send exam schedules, grades, and progress reports",
    "useCasesPage.education.benefit3": "Handle fee payments and scholarship questions",
    "useCasesPage.education.benefit4": "Offer course information outside staffed hours with escalation",
    "useCasesPage.education.example1": "Student Registration",
    "useCasesPage.education.example2": "Fee Inquiries",
    "useCasesPage.education.example3": "Grade Reports",
    "useCasesPage.education.example4": "Parent Meetings",

    // Healthcare Industry
    "useCasesPage.healthcare.name": "Healthcare & Clinics",
    "useCasesPage.healthcare.description": "Streamline patient communication, appointment management, and health information delivery with HIPAA-aware AI assistance.",
    "useCasesPage.healthcare.results": "Consistent reminders and routine scheduling support with human oversight",
    "useCasesPage.healthcare.benefit1": "Appointment scheduling and automated reminders",
    "useCasesPage.healthcare.benefit2": "Pre-visit form collection and insurance verification",
    "useCasesPage.healthcare.benefit3": "Lab results notifications and follow-up scheduling",
    "useCasesPage.healthcare.benefit4": "General health information and medication reminders",
    "useCasesPage.healthcare.example1": "Book Appointments",
    "useCasesPage.healthcare.example2": "Insurance Queries",
    "useCasesPage.healthcare.example3": "Prescription Refills",
    "useCasesPage.healthcare.example4": "Test Results",

    // E-commerce Industry
    "useCasesPage.ecommerce.name": "E-Commerce & Retail",
    "useCasesPage.ecommerce.description": "Test shopping guidance, consented cart reminders, order lookup, and human fallback using verified store data.",
    "useCasesPage.ecommerce.results": "Guided shopping, cart follow-up, and accessible order updates",
    "useCasesPage.ecommerce.benefit1": "Product recommendations and comparisons",
    "useCasesPage.ecommerce.benefit2": "Order tracking and delivery updates",
    "useCasesPage.ecommerce.benefit3": "Returns, refunds, and exchange processing",
    "useCasesPage.ecommerce.benefit4": "Inventory checks and size guidance",
    "useCasesPage.ecommerce.example1": "Product Search",
    "useCasesPage.ecommerce.example2": "Order Status",
    "useCasesPage.ecommerce.example3": "Size Guide",
    "useCasesPage.ecommerce.example4": "Return Request",

    // Real Estate Industry
    "useCasesPage.realestate.name": "Real Estate & Property",
    "useCasesPage.realestate.description": "Qualify leads, schedule viewings, and provide property information around the clock without missing any opportunity.",
    "useCasesPage.realestate.results": "Around-the-clock inquiry capture and faster lead routing",
    "useCasesPage.realestate.benefit1": "Property availability and pricing inquiries",
    "useCasesPage.realestate.benefit2": "Automated viewing and tour scheduling",
    "useCasesPage.realestate.benefit3": "Mortgage calculator and financing options",
    "useCasesPage.realestate.benefit4": "Lead qualification and agent matching",
    "useCasesPage.realestate.example1": "Property Search",
    "useCasesPage.realestate.example2": "Schedule Viewing",
    "useCasesPage.realestate.example3": "Price Inquiry",
    "useCasesPage.realestate.example4": "Document Request",

    // Tourism Industry
    "useCasesPage.tourism.name": "Travel & Tourism",
    "useCasesPage.tourism.description": "Handle supported booking and destination questions, including outside staffed hours, with clear human fallback.",
    "useCasesPage.tourism.results": "Routine booking answers with clear handoff for exceptions",
    "useCasesPage.tourism.benefit1": "Flight and hotel booking assistance",
    "useCasesPage.tourism.benefit2": "Travel itinerary management and updates",
    "useCasesPage.tourism.benefit3": "Visa requirements and documentation guidance",
    "useCasesPage.tourism.benefit4": "Destination recommendations and local tips",
    "useCasesPage.tourism.example1": "Package Deals",
    "useCasesPage.tourism.example2": "Booking Status",
    "useCasesPage.tourism.example3": "Visa Info",
    "useCasesPage.tourism.example4": "Travel Tips",

    // Restaurant Industry
    "useCasesPage.restaurant.name": "Restaurants & Food Service",
    "useCasesPage.restaurant.description": "Handle reservations, take orders, and answer menu questions automatically while your staff focuses on service.",
    "useCasesPage.restaurant.results": "Simpler online ordering and fewer missed reservation requests",
    "useCasesPage.restaurant.benefit1": "Table reservations and waitlist management",
    "useCasesPage.restaurant.benefit2": "Online ordering and delivery tracking",
    "useCasesPage.restaurant.benefit3": "Menu information and dietary requirements",
    "useCasesPage.restaurant.benefit4": "Special events and catering inquiries",
    "useCasesPage.restaurant.example1": "Book Table",
    "useCasesPage.restaurant.example2": "Order Food",
    "useCasesPage.restaurant.example3": "Menu Info",
    "useCasesPage.restaurant.example4": "Catering",

    // Banking Industry
    "useCasesPage.banking.name": "Banking & Finance",
    "useCasesPage.banking.description": "Use authenticated, bounded workflows for account information and route transactions or recommendations to authorized staff.",
    "useCasesPage.banking.results": "Routine service answers with regulated requests routed to staff",
    "useCasesPage.banking.benefit1": "Account balance and transaction history",
    "useCasesPage.banking.benefit2": "Fund transfers and bill payments",
    "useCasesPage.banking.benefit3": "Loan and credit card inquiries",
    "useCasesPage.banking.benefit4": "Fraud alerts and security notifications",
    "useCasesPage.banking.example1": "Check Balance",
    "useCasesPage.banking.example2": "Transfer Funds",
    "useCasesPage.banking.example3": "Loan Status",
    "useCasesPage.banking.example4": "Card Services",

    // Insurance Industry
    "useCasesPage.insurance.name": "Insurance Services",
    "useCasesPage.insurance.description": "Streamline policy inquiries, claims processing, and quote generation with intelligent automation.",
    "useCasesPage.insurance.results": "Structured intake, status updates, and staff handoff for claims",
    "useCasesPage.insurance.benefit1": "Policy information and coverage details",
    "useCasesPage.insurance.benefit2": "Claims filing and status tracking",
    "useCasesPage.insurance.benefit3": "Quote generation and comparison",
    "useCasesPage.insurance.benefit4": "Renewal reminders and payment processing",
    "useCasesPage.insurance.example1": "Get Quote",
    "useCasesPage.insurance.example2": "File Claim",
    "useCasesPage.insurance.example3": "Policy Info",
    "useCasesPage.insurance.example4": "Renewals",

    // Automotive Industry
    "useCasesPage.automotive.name": "Automotive & Dealerships",
    "useCasesPage.automotive.description": "Automate test drive bookings, service appointments, and vehicle inquiries for car dealerships and service centers.",
    "useCasesPage.automotive.results": "Simpler test-drive and service appointment booking",
    "useCasesPage.automotive.benefit1": "Test drive scheduling and vehicle information",
    "useCasesPage.automotive.benefit2": "Service appointment booking and reminders",
    "useCasesPage.automotive.benefit3": "Parts availability and pricing",
    "useCasesPage.automotive.benefit4": "Financing options and trade-in valuations",
    "useCasesPage.automotive.example1": "Test Drive",
    "useCasesPage.automotive.example2": "Service Booking",
    "useCasesPage.automotive.example3": "Parts Inquiry",
    "useCasesPage.automotive.example4": "Financing",

    // Fitness Industry
    "useCasesPage.fitness.name": "Fitness & Wellness",
    "useCasesPage.fitness.description": "Manage class bookings, membership inquiries, and provide fitness guidance with AI-powered assistance.",
    "useCasesPage.fitness.results": "Easier class booking, reminders, and membership questions",
    "useCasesPage.fitness.benefit1": "Class booking and schedule information",
    "useCasesPage.fitness.benefit2": "Membership plans and renewals",
    "useCasesPage.fitness.benefit3": "Personal trainer booking",
    "useCasesPage.fitness.benefit4": "Workout tips and nutrition guidance",
    "useCasesPage.fitness.example1": "Book Class",
    "useCasesPage.fitness.example2": "Membership",
    "useCasesPage.fitness.example3": "PT Session",
    "useCasesPage.fitness.example4": "Facility Hours",

    // Legal Industry
    "useCasesPage.legal.name": "Legal Services",
    "useCasesPage.legal.description": "Automate initial consultations, case status updates, and document requests for law firms and legal departments.",
    "useCasesPage.legal.results": "Structured client intake and routine case-status communication",
    "useCasesPage.legal.benefit1": "Consultation scheduling and intake forms",
    "useCasesPage.legal.benefit2": "Case status updates and document requests",
    "useCasesPage.legal.benefit3": "Legal FAQ and general information",
    "useCasesPage.legal.benefit4": "Billing inquiries and payment processing",
    "useCasesPage.legal.example1": "Book Consultation",
    "useCasesPage.legal.example2": "Case Status",
    "useCasesPage.legal.example3": "Documents",
    "useCasesPage.legal.example4": "Billing",

    // HR & Recruitment Industry
    "useCasesPage.hr.name": "HR & Recruitment",
    "useCasesPage.hr.description": "Streamline hiring processes, employee onboarding, and HR inquiries with intelligent automation.",
    "useCasesPage.hr.results": "Consistent initial screening and employee-question routing",
    "useCasesPage.hr.benefit1": "Job application screening and scheduling",
    "useCasesPage.hr.benefit2": "Employee onboarding and training",
    "useCasesPage.hr.benefit3": "Leave requests and policy questions",
    "useCasesPage.hr.benefit4": "Benefits enrollment and payroll inquiries",
    "useCasesPage.hr.example1": "Apply for Job",
    "useCasesPage.hr.example2": "Leave Request",
    "useCasesPage.hr.example3": "Benefits Info",
    "useCasesPage.hr.example4": "Payroll",

    // Logistics Industry
    "useCasesPage.logistics.name": "Logistics & Shipping",
    "useCasesPage.logistics.description": "Automate shipment tracking, delivery scheduling, and customer inquiries for logistics companies.",
    "useCasesPage.logistics.results": "Self-service tracking updates and easier delivery rescheduling",
    "useCasesPage.logistics.benefit1": "Real-time shipment tracking",
    "useCasesPage.logistics.benefit2": "Delivery scheduling and rescheduling",
    "useCasesPage.logistics.benefit3": "Pricing and quote generation",
    "useCasesPage.logistics.benefit4": "Claims and issue resolution",
    "useCasesPage.logistics.example1": "Track Package",
    "useCasesPage.logistics.example2": "Get Quote",
    "useCasesPage.logistics.example3": "Schedule Pickup",
    "useCasesPage.logistics.example4": "File Claim",

    // Government Industry
    "useCasesPage.government.name": "Government & Public Services",
    "useCasesPage.government.description": "Offer self-service access to approved information and request routing, including outside staffed hours.",
    "useCasesPage.government.results": "Clear service information and structured request routing",
    "useCasesPage.government.benefit1": "Service information and eligibility checks",
    "useCasesPage.government.benefit2": "Application status tracking",
    "useCasesPage.government.benefit3": "Document and permit requests",
    "useCasesPage.government.benefit4": "Public announcements and emergency alerts",
    "useCasesPage.government.example1": "Service Info",
    "useCasesPage.government.example2": "Application Status",
    "useCasesPage.government.example3": "Permits",
    "useCasesPage.government.example4": "Complaints",

    // Events Industry
    "useCasesPage.events.name": "Events & Conferences",
    "useCasesPage.events.description": "Manage event registrations, provide attendee support, and automate event-related communications.",
    "useCasesPage.events.results": "Simpler registration and consistent attendee information",
    "useCasesPage.events.benefit1": "Event registration and ticket booking",
    "useCasesPage.events.benefit2": "Schedule and speaker information",
    "useCasesPage.events.benefit3": "Venue directions and logistics",
    "useCasesPage.events.benefit4": "Post-event feedback collection",
    "useCasesPage.events.example1": "Register",
    "useCasesPage.events.example2": "Schedule",
    "useCasesPage.events.example3": "Venue Info",
    "useCasesPage.events.example4": "Networking",

    // Telecom Industry
    "useCasesPage.telecom.name": "Telecom & Utilities",
    "useCasesPage.telecom.description": "Handle billing inquiries, service requests, and technical support for telecommunications and utility companies.",
    "useCasesPage.telecom.results": "Routine troubleshooting with escalation for network issues",
    "useCasesPage.telecom.benefit1": "Bill payment and usage information",
    "useCasesPage.telecom.benefit2": "Plan changes and upgrades",
    "useCasesPage.telecom.benefit3": "Technical troubleshooting",
    "useCasesPage.telecom.benefit4": "Service outage notifications",
    "useCasesPage.telecom.example1": "Pay Bill",
    "useCasesPage.telecom.example2": "Check Usage",
    "useCasesPage.telecom.example3": "Tech Support",
    "useCasesPage.telecom.example4": "Upgrade Plan",

    // Beauty Industry
    "useCasesPage.beauty.name": "Beauty & Salons",
    "useCasesPage.beauty.description": "Automate appointment booking, service inquiries, and product recommendations for beauty businesses.",
    "useCasesPage.beauty.results": "Easier appointment booking, reminders, and rescheduling",
    "useCasesPage.beauty.benefit1": "Appointment scheduling and reminders",
    "useCasesPage.beauty.benefit2": "Service menu and pricing",
    "useCasesPage.beauty.benefit3": "Product recommendations and availability",
    "useCasesPage.beauty.benefit4": "Loyalty program and promotions",
    "useCasesPage.beauty.example1": "Book Appointment",
    "useCasesPage.beauty.example2": "Services",
    "useCasesPage.beauty.example3": "Products",
    "useCasesPage.beauty.example4": "Promotions",

    // Media Industry
    "useCasesPage.media.name": "Media & Entertainment",
    "useCasesPage.media.description": "Support approved content discovery and subscription questions with identity checks and escalation.",
    "useCasesPage.media.results": "Consistent subscription support and content discovery",
    "useCasesPage.media.benefit1": "Subscription management and billing",
    "useCasesPage.media.benefit2": "Content recommendations",
    "useCasesPage.media.benefit3": "Event and show information",
    "useCasesPage.media.benefit4": "Technical support and troubleshooting",
    "useCasesPage.media.example1": "Subscription",
    "useCasesPage.media.example2": "Recommendations",
    "useCasesPage.media.example3": "Showtimes",
    "useCasesPage.media.example4": "Support",

    // Nonprofit Industry
    "useCasesPage.nonprofit.name": "Nonprofits & NGOs",
    "useCasesPage.nonprofit.description": "Engage donors, manage volunteers, and provide information about your mission with AI-powered communication.",
    "useCasesPage.nonprofit.results": "Structured donor questions and volunteer coordination",
    "useCasesPage.nonprofit.benefit1": "Donation processing and receipts",
    "useCasesPage.nonprofit.benefit2": "Volunteer registration and scheduling",
    "useCasesPage.nonprofit.benefit3": "Program information and impact reports",
    "useCasesPage.nonprofit.benefit4": "Event promotion and registration",
    "useCasesPage.nonprofit.example1": "Donate",
    "useCasesPage.nonprofit.example2": "Volunteer",
    "useCasesPage.nonprofit.example3": "Programs",
    "useCasesPage.nonprofit.example4": "Events",

    // Gaming Industry
    "useCasesPage.gaming.name": "Gaming & Esports",
    "useCasesPage.gaming.description": "Provide player support, tournament information, and community engagement for gaming companies.",
    "useCasesPage.gaming.results": "Faster routing for account, tournament, and player questions",
    "useCasesPage.gaming.benefit1": "Account support and recovery",
    "useCasesPage.gaming.benefit2": "Tournament registration and brackets",
    "useCasesPage.gaming.benefit3": "In-game purchase support",
    "useCasesPage.gaming.benefit4": "Game guides and tips",
    "useCasesPage.gaming.example1": "Account Help",
    "useCasesPage.gaming.example2": "Tournaments",
    "useCasesPage.gaming.example3": "Purchases",
    "useCasesPage.gaming.example4": "Game Tips",

    // Features Page
    "featuresPage.badge": "Platform Features",
    "featuresPage.title": "Everything You Need to Succeed",
    "featuresPage.subtitle": "SkyLight Chat provides all the tools you need to automate customer communication, increase engagement, and grow your business with AI-powered chatbots.",

    // AI Features Category
    "featuresPage.ai.title": "AI Intelligence",
    "featuresPage.ai.description": "Harness the power of artificial intelligence to understand and respond to your customers naturally.",
    "featuresPage.ai.ai1.title": "Natural Language Understanding",
    "featuresPage.ai.ai1.description": "Our AI understands context, intent, and sentiment in multiple languages and dialects.",
    "featuresPage.ai.ai2.title": "Smart Responses",
    "featuresPage.ai.ai2.description": "Generate intelligent, contextual responses that feel human and personalized.",
    "featuresPage.ai.ai3.title": "Learning & Improvement",
    "featuresPage.ai.ai3.description": "The AI continuously learns from interactions to provide better responses over time.",
    "featuresPage.ai.ai4.title": "Voice Message Support",
    "featuresPage.ai.ai4.description": "Understand and respond to voice messages with AI-powered speech recognition.",

    "featuresPage.ai.ai5.title": "Multimodal Vision Processing",
    "featuresPage.ai.ai5.description": "AI agents can view, describe, and extract text from images, receipts, and invoices (OCR).",
    "featuresPage.ai.ai6.title": "Smart Writer Assistant",
    "featuresPage.ai.ai6.description": "Suggest smart replies and rewrite draft tones inside the unified inbox for human agents.",

    // Channels Category
    "featuresPage.channels.title": "Multi-Channel Support",
    "featuresPage.channels.description": "Connect with your customers on all their favorite messaging platforms from one unified inbox.",
    "featuresPage.channels.channels1.title": "WhatsApp Business",
    "featuresPage.channels.channels1.description": "Full WhatsApp Business integration with templates and broadcasts.",
    "featuresPage.channels.channels2.title": "Instagram",
    "featuresPage.channels.channels2.description": "Automate DMs and comments on Instagram.",
    "featuresPage.channels.channels3.title": "Telegram",
    "featuresPage.channels.channels3.description": "Automate conversations and support on Telegram with bot integration.",
    "featuresPage.channels.channels4.title": "LinkedIn",
    "featuresPage.channels.channels4.description": "Unified LinkedIn inbox, outreach campaigns, lead sourcing, and Recruiter job posts with AI applicant screening.",
    "featuresPage.channels.channels5.title": "Web Chat Widget",
    "featuresPage.channels.channels5.description": "Embed a beautiful chat widget on your website in minutes.",
    "featuresPage.channels.channels6.title": "Halla VoIP & Call Center",
    "featuresPage.channels.channels6.description": "Dedicated AI voice system (halla.skylightchat.com) for inbound/outbound calls, VoIP telephony, and automated missed-call recovery via WhatsApp.",

    "featuresPage.channels.channels7.title": "LinkedIn Recruiter Integration",
    "featuresPage.channels.channels7.description": "Post jobs, sync applicants, screen candidates automatically with AI, and download resumes.",
    "featuresPage.channels.channels8.title": "Outreach Campaigns with Warm-up",
    "featuresPage.channels.channels8.description": "Run multi-stage outreach campaigns with automated warm-up mode to prevent number banning.",

    // Automation Category
    "featuresPage.automation.title": "Powerful Automation",
    "featuresPage.automation.description": "Build complex workflows without coding to automate your business processes.",
    "featuresPage.automation.automation2.title": "Triggers & Actions",
    "featuresPage.automation.automation2.description": "Set up automated responses based on keywords, events, or user behavior.",
    "featuresPage.automation.automation3.title": "Scheduled Messages",
    "featuresPage.automation.automation3.description": "Send approved follow-ups and reminders at configured times with suppression rules.",
    "featuresPage.automation.automation4.title": "Smart Routing",
    "featuresPage.automation.automation4.description": "Route conversations to the right team member based on rules you define.",

    "featuresPage.automation.automation5.title": "Specialized AI Agents",
    "featuresPage.automation.automation5.description": "Deploy specialized sub-agents (Booking, Order, CRM) to perform real-time actions during chat.",
    "featuresPage.automation.automation6.title": "Human-in-the-Loop Approvals",
    "featuresPage.automation.automation6.description": "Pause sensitive operations (publishing, high-cost actions) for human manager review and approval.",

    // Analytics Category
    "featuresPage.analytics.title": "Analytics & Insights",
    "featuresPage.analytics.description": "Track performance, understand your customers, and make data-driven decisions.",
    "featuresPage.analytics.analytics1.title": "Conversation Analytics",
    "featuresPage.analytics.analytics1.description": "Monitor response times, resolution rates, and customer satisfaction.",
    "featuresPage.analytics.analytics2.title": "AI Performance",
    "featuresPage.analytics.analytics2.description": "Track AI accuracy, handled conversations, and improvement areas.",
    "featuresPage.analytics.analytics4.title": "Custom Reports",
    "featuresPage.analytics.analytics4.description": "Export data and create custom reports for deeper analysis.",

    "featuresPage.analytics.analytics5.title": "Daily AI Training Feedback",
    "featuresPage.analytics.analytics5.description": "AI analyzes team conversations and calls to generate daily personalized training tips and scorecards.",
    "featuresPage.analytics.analytics6.title": "Sentiment & Intent Classification",
    "featuresPage.analytics.analytics6.description": "Classify customer sentiment and intent in real-time to trigger automated escalation workflows.",

    // Knowledge Category
    "featuresPage.knowledge.title": "Knowledge Management",
    "featuresPage.knowledge.description": "Build a smart knowledge base that powers accurate AI responses.",
    "featuresPage.knowledge.knowledge1.title": "Website Scraping",
    "featuresPage.knowledge.knowledge1.description": "Automatically import content from your website to train the AI.",
    "featuresPage.knowledge.knowledge2.title": "Document Upload",
    "featuresPage.knowledge.knowledge2.description": "Upload PDFs, docs, and files to expand your knowledge base.",
    "featuresPage.knowledge.knowledge3.title": "FAQ Builder",
    "featuresPage.knowledge.knowledge3.description": "Create and organize frequently asked questions with answers.",
    "featuresPage.knowledge.knowledge4.title": "Product Catalog",
    "featuresPage.knowledge.knowledge4.description": "Import your products for accurate pricing and availability info.",

    "featuresPage.knowledge.knowledge5.title": "Long-Term Memory Engine",
    "featuresPage.knowledge.knowledge5.description": "Automatically extract customer preferences, budgets, and objections and save them as structured notes.",

    // Team Category
    "featuresPage.team.title": "Team Collaboration",
    "featuresPage.team.description": "Work together seamlessly with powerful collaboration features.",
    "featuresPage.team.team1.title": "Unified Inbox",
    "featuresPage.team.team1.description": "All conversations from all channels in one easy-to-use inbox.",
    "featuresPage.team.team2.title": "Assignment & Tags",
    "featuresPage.team.team2.description": "Organize conversations with tags and assign to team members.",
    "featuresPage.team.team3.title": "Internal Notes",
    "featuresPage.team.team3.description": "Add private notes to conversations for team communication.",
    "featuresPage.team.team4.title": "Role Permissions",
    "featuresPage.team.team4.description": "Control access with customizable roles and permissions.",

    "featuresPage.team.team5.title": "White-Label Partner Program",
    "featuresPage.team.team5.description": "Reseller dashboard allowing partners to create sub-accounts, customize pricing, and brand the platform.",

    // Security
    "featuresPage.security.title": "Security & Compliance",
    "featuresPage.security.description": "Enterprise-grade protection for your data and conversations.",
    "featuresPage.security.security1.title": "Encryption in Transit and at Rest",
    "featuresPage.security.security1.description": "All messages and data are encrypted in transit and at rest using AES-256.",
    "featuresPage.security.security2.title": "Privacy Controls",
    "featuresPage.security.security2.description": "Controls designed to support customer privacy and data-protection workflows.",
    "featuresPage.security.security3.title": "Two-Factor Authentication",
    "featuresPage.security.security3.description": "Protect team accounts with 2FA, SSO, and IP allowlisting.",
    "featuresPage.security.security4.title": "Audit Logs & Data Residency",
    "featuresPage.security.security4.description": "Full audit trail for all actions plus data residency options in your preferred region.",

    // Highlights
    "featuresPage.highlights.title": "Why Choose SkyLight Chat?",
    "featuresPage.highlights.uptime": "Service Availability",
    "featuresPage.highlights.support": "AI Support Available",
    "featuresPage.highlights.channels": "Messaging channels",
    "featuresPage.highlights.channelsPresent": "WhatsApp · Instagram · Telegram · LinkedIn · Web",

    // CTA
    "featuresPage.api.title": "Developer API",
    "featuresPage.api.description": "Full programmatic access to every SkyLight Chat feature. Build custom integrations, automate workflows, and connect your own systems.",
    "featuresPage.api.api2.title": "Strict Data Isolation",
    "featuresPage.api.api2.description": "Every endpoint is scoped to your API key. Accessing another account's data is structurally impossible.",
    "featuresPage.api.api3.title": "Voice Synthesis API",
    "featuresPage.api.api3.description": "Clone a voice from a sample recording and generate natural Arabic or English speech from text — all via API.",
    "featuresPage.api.api4.title": "Full Documentation",
    "featuresPage.api.api4.description": "Comprehensive developer docs at docs.skylightchat.com with request/response examples, code samples, and webhook guides.",

    "featuresPage.cta.title": "Ready to Transform Your Communication?",
    "featuresPage.cta.subtitle": "Join thousands of businesses using SkyLight Chat to automate customer support and boost engagement.",
    "featuresPage.cta.button": "Start Free Trial",

    // ── Status page ──────────────────────────────────────────────────────────
    "status.badge.label": "Live Status",
    "status.title": "System Status",
    "status.subtitle": "Real-time health and uptime for all SkyLight Chat services.",
    "status.checking": "Checking systems…",
    "status.lastChecked": "Last checked",
    "status.refresh": "Refresh",
    "status.noIssues": "We are not aware of any issues affecting our systems.",
    "status.systemStatus": "System status",
    "status.last90": "Last 90 days",
    "status.incidentHistory": "Incident History",
    "status.resolved": "Resolved",
    "status.noMoreIncidents": "No further incidents on record.",
    "status.overall.operational": "All Systems Operational",
    "status.overall.degraded": "Partial Service Disruption",
    "status.overall.outage": "Service Outage Detected",
    "status.overall.maintenance": "Scheduled Maintenance",
    "status.overall.unknown": "Checking…",
    "status.badge.operational": "Operational",
    "status.badge.degraded": "Degraded",
    "status.badge.outage": "Outage",
    "status.badge.maintenance": "Maintenance",
    "status.badge.unknown": "Checking…",
    "status.service.api": "REST API",
    "status.service.website": "Dashboard & Website",
    "status.cta.title": "Get notified about incidents",
    "status.cta.sub": "Subscribe to status updates and be the first to know when something affects your service.",
    "status.cta.btn": "Contact Us to Subscribe",
    "status.incidentStatus.investigating": "Investigating",
    "status.incidentStatus.identified":    "Identified",
    "status.incidentStatus.monitoring":    "Monitoring",
    "status.incidentStatus.resolved":      "Resolved",

    // Header
    "header.login": "Login",
    "header.signup": "Sign up",

    // Footer
    "footer.cta.title": "All your work in one place",
    "footer.cta.placeholder": "Enter your email",
    "footer.cta.button": "Start Now",
    "footer.primary.title": "Primary Pages",
    "footer.primary.home": "Home",
    "footer.primary.features": "Features",
    "footer.primary.pricing": "Pricing",
    "footer.primary.useCases": "Use Cases",
    "footer.primary.contact": "Contact",
    "footer.company.title": "Company",
    "footer.company.terms": "Terms and Conditions",
    "footer.company.privacy": "Privacy Policy",
    "footer.utility.title": "Utility pages",
    "footer.utility.faq": "Faq",
    "footer.utility.signup": "Sign Up",
    "footer.utility.signin": "Sign In",
    "footer.utility.partnersPanel": "Partners Panel",
    "footer.utility.reset": "Reset Password",
    "footer.socials.title": "Socials",
    "footer.socials.instagram": "Instagram",
    "footer.socials.whatsapp": "WhatsApp",
    "footer.socials.tiktok": "TikTok",
    "footer.socials.linkedin": "LinkedIn",
    "footer.socials.youtube": "YouTube",
    "footer.contact.title": "Contact",
    "footer.contact.address": "7996 Abdulrahman Bin Auf Street — 1st Floor, Al Manar District 32274, Dammam, Saudi Arabia",
    "footer.contact.email": "Info@skylightchat.com",
    "footer.copyright": "© {year} All rights reserved to",
    "footer.copyright.agency": "SkyLight Company",
    "footer.trustpilot.title": "Customer reviews on Trustpilot",

    // Footer new columns
    "footer.product.title": "Product",
    "footer.product.pricing": "Pricing",
    "footer.product.waChecker": "Free WhatsApp Checker",
    "footer.product.integrations": "Integrations",
    "footer.product.changelog": "Changelog",
    "footer.resources.title": "Resources",
    "footer.resources.hub": "Resources Hub",
    "footer.resources.partners": "Partners Program",
    "footer.resources.usecases": "Partners Program",
    "footer.resources.faq": "FAQ",
    "footer.resources.contact": "Contact Sales",
    "footer.resources.developers": "Developers",
    "footer.resources.status": "System Status",
    "footer.company.security": "Security",

    // Security page
    "security.badge": "Enterprise Security",
    "security.heroTitle1": "Security Controls",
    "security.heroTitle2": "You Can Review",
    "security.heroSubtitle": "Review encryption, access, residency options, logging, and contractual commitments for your selected plan and configuration.",
    "security.stat1": "Encryption",
    "security.stat2": "Availability Monitoring",
    "security.stat3": "In Transit",
    "security.stat4": "Monitoring",
    "security.cert.gdpr.title": "Privacy Controls",
    "security.cert.gdpr.desc": "Access and deletion workflows that can support customer privacy programs.",
    "security.cert.encryption.title": "Encryption Controls",
    "security.cert.encryption.desc": "Encryption in transit and at rest, as documented for the selected service configuration.",
    "security.cert.dataResidency.title": "Data Residency",
    "security.cert.dataResidency.desc": "Available hosting options depend on the selected plan and service configuration.",
    "security.cert.pdpl.title": "PDPL-Oriented Controls",
    "security.cert.pdpl.desc": "Configuration and governance controls designed to support customer PDPL programs.",
    "security.enc.title": "Encryption in Transit and at Rest",
    "security.enc.desc": "Service data is protected with encryption in transit and at rest, together with access controls and audit logging.",
    "security.pillars.title": "Security at Every Layer",
    "security.pillars.subtitle": "Ask for the controls available in your plan: infrastructure, access, logging, and testing practices.",
    "security.pillar.infra.title": "Infrastructure Security",
    "security.pillar.infra.desc": "Cloud hosting with network isolation and monitoring options that depend on the selected architecture.",
    "security.pillar.infra.infraSpec1": "Tenant separation where supported by the architecture",
    "security.pillar.infra.infraSpec2": "Network protection controls where enabled",
    "security.pillar.infra.infraSpec3": "Vulnerability scanning as configured for the service",
    "security.pillar.access.title": "Access Control",
    "security.pillar.access.desc": "Fine-grained permissions ensure your team only accesses what they need.",
    "security.pillar.access.accessSpec1": "Role-based access control (RBAC)",
    "security.pillar.access.accessSpec2": "Two-factor authentication (2FA)",
    "security.pillar.access.accessSpec3": "SSO and IP allowlisting where included in the plan",
    "security.pillar.audit.title": "Audit & Monitoring",
    "security.pillar.audit.desc": "Administrative and access logging options for the actions supported by your configuration.",
    "security.pillar.audit.auditSpec1": "Administrative audit logs for supported actions",
    "security.pillar.audit.auditSpec2": "Monitoring and alerting options where enabled",
    "security.pillar.audit.auditSpec3": "Log export options for customer review where available",
    "security.pillar.pentest.title": "Penetration Testing",
    "security.pillar.pentest.desc": "Request current testing practices and any third-party assessment summaries available for your evaluation.",
    "security.pillar.pentest.pentestSpec1": "Ask for the current third-party testing schedule",
    "security.pillar.pentest.pentestSpec2": "Responsible disclosure contact for security reports",
    "security.pillar.pentest.pentestSpec3": "Automated scanning practices where enabled",
    "security.cta.title": "Have Security Questions?",
    "security.cta.subtitle": "Ask for current security documentation and the controls available under your contract.",
    "security.cta.contact": "Talk to Security Team",
    "security.cta.privacy": "Read Privacy Policy",

    // Integrations page
    "integrations.badge": "Integrations",
    "integrations.heroTitle1": "Connect",
    "integrations.heroTitle2": "Everything",
    "integrations.heroSubtitle": "Connect supported messaging, ecommerce, CRM, and API workflows after confirming plan, provider, and regional availability.",
    "integrations.cat.messaging.title": "Messaging Channels",
    "integrations.cat.messaging.desc": "WhatsApp, Instagram, Telegram, LinkedIn, and web chat in one inbox",
    "integrations.channel.whatsapp": "WhatsApp",
    "integrations.channel.instagram": "Instagram",
    "integrations.channel.telegram": "Telegram",
    "integrations.channel.linkedin": "LinkedIn",
    "integrations.channel.web_widget": "Web Widget",
    "integrations.channel.salla": "Salla",
    "integrations.automation.n8n": "n8n",
    "integrations.cat.ecommerce.title": "E-commerce Platforms",
    "integrations.cat.ecommerce.desc": "Sync orders, products, and customers",
    "integrations.cat.crm.title": "CRM & Sales",
    "integrations.cat.crm.desc": "Keep your pipeline in sync",
    "integrations.cat.automation.title": "Automation & Workflows",
    "integrations.cat.automation.desc": "Connect n8n, REST API, and webhooks to automate your stack",
    "integrations.cat.automation.api": "REST API",
    "integrations.cat.automation.webhooks": "Webhooks",
    "integrations.cat.analytics.title": "Analytics & Tracking",
    "integrations.cat.analytics.desc": "Attribution and conversion tracking options",
    "integrations.cat.ai.title": "AI & Infrastructure",
    "integrations.cat.ai.desc": "Configurable AI model infrastructure",
    "integrations.api.title": "Open REST API",
    "integrations.api.desc": "Build any custom integration with our fully documented REST API. Send and receive messages, manage contacts, trigger automations, and access all platform data programmatically.",
    "integrations.api.rest": "RESTful API with full documentation",
    "integrations.api.webhooks": "Real-time webhooks for all events",
    "integrations.api.realtime": "WebSocket support for live updates",
    "integrations.api.sdks": "SDKs for Node.js, Python, and PHP",
    "integrations.cta.title": "Don't see your tool?",
    "integrations.cta.subtitle": "We're constantly adding new integrations. Contact us and we'll build it for you.",
    "integrations.cta.button": "Request an Integration",

    // Changelog page
    "changelog.badge": "Product Updates",
    "changelog.heroTitle1": "What's",
    "changelog.heroTitle2": "New",
    "changelog.heroSubtitle": "We ship improvements every week. Here's what we've been building.",
    "changelog.v280.title": "AI Agent v2 & Multi-model Routing",
    "changelog.v280.v280i1": "New AI Agent builder with drag-and-drop intent flows",
    "changelog.v280.v280i2": "Multi-model routing: automatically pick fastest or cheapest model per request",
    "changelog.v280.v280i3": "Groq integration for sub-200ms AI responses",
    "changelog.v280.v280i4": "Agent handoff improvements with context preservation",
    "changelog.v272.title": "Performance & Stability Improvements",
    "changelog.v272.v272i1": "Reduced dashboard load time by 40% through query optimization",
    "changelog.v272.v272i2": "Improved WhatsApp webhook reliability under high load",
    "changelog.v272.v272i3": "Fixed Arabic RTL rendering issues in conversation view",
    "changelog.v270.title": "Knowledge Base 2.0 & Product Catalog",
    "changelog.v270.v270i1": "Redesigned knowledge base with semantic search powered by embeddings",
    "changelog.v270.v270i2": "Product catalog support for e-commerce AI recommendations",
    "changelog.v270.v270i3": "Website crawling with automatic re-crawl scheduling",
    "changelog.v270.v270i4": "Document processing: PDF, DOCX, and XLSX support",
    "changelog.v265.title": "Bug Fixes & Security Patches",
    "changelog.v265.v265i1": "Patched XSS vulnerability in web widget (responsible disclosure)",
    "changelog.v265.v265i2": "Fixed session expiry edge case for enterprise SSO users",
    "changelog.v260.title": "Booking & Scheduling Module",
    "changelog.v260.v260i1": "Native appointment booking with calendar sync",
    "changelog.v260.v260i2": "Resource-based and capacity-based booking modes",
    "changelog.v260.v260i3": "Automated reminders via WhatsApp before appointments",
    "changelog.v253.title": "Analytics Dashboard Redesign",
    "changelog.v253.v253i1": "New conversation funnel analytics with drop-off insights",
    "changelog.v253.v253i2": "Agent performance scorecards with response time tracking",
    "changelog.v253.v253i3": "Export reports to CSV/PDF with scheduled email delivery",
    "changelog.subscribe.title": "Stay in the loop",
    "changelog.subscribe.desc": "Get notified when we ship something new.",
    "changelog.subscribe.placeholder": "your@email.com",
    "changelog.subscribe.button": "Notify Me",

    // Changelog v2 — real releases
    "cl.badge": "Product Changelog",
    "cl.heroLine1": "Built in the open.",
    "cl.heroLine2": "Shipped every week.",
    "cl.heroSub": "Every feature, every fix, every audit — documented. This is the full history of what we've shipped.",
    "cl.section.recent": "Recent Releases — Last 3 Months",
    "cl.section.past": "The Past Year — How We Got Here",
    "cl.type.launch": "Platform Launch",
    "cl.type.major": "New Release",
    "cl.type.improvement": "Improvement",
    "cl.type.security": "Security",
    "cl.type.fix": "Bug Fix",

    "cl.v26.title": "Outreach Campaigns & SkylightTalk Voice Notes",
    "cl.v26.i1": "Outreach campaigns: run bulk messaging campaigns to contact segments with scheduling, templates, and personalization",
    "cl.v26.i2": "SkylightTalk: AI agents can now send voice notes — natural-sounding audio replies in Arabic to customers",
    "cl.v26.i3": "Campaign delivery tracking, analytics, and segment-based targeting from lists and tags",
    "cl.v26.i4": "Voice notes available on WhatsApp and web chat — AI responds with cloned voice for a human touch",

    "cl.v25.title": "Security Audit — January 2026",
    "cl.v25.i1": "Security review followed by remediation and additional platform hardening",
    "cl.v25.i2": "Responsible disclosure: XSS vulnerability in the web chat widget reported externally and patched same day",
    "cl.v25.i3": "Session hardening: stricter token rotation, idle timeout enforcement, and concurrent session limits for all accounts",

    "cl.v24.title": "Personal WhatsApp via QR + AI Context Engine",
    "cl.v24.i1": "Connect a personal WhatsApp number via QR scan — no additional account or approval required",
    "cl.v24.i2": "Personal WhatsApp numbers now appear alongside your existing channels in the same unified inbox",
    "cl.v24.i3": "AI agent now receives live date and time context — answers scheduling questions and references 'today' accurately",
    "cl.v24.i4": "Full dark mode shipped across all dashboard views following an accessibility audit",

    "cl.v23.title": "Unified Inbox Improvements & Contact Segments",
    "cl.v23.i1": "Telegram messaging integrated into the unified inbox — contacts, conversations, and AI agent support fully available",
    "cl.v23.i2": "Inline AI reply and AI rewrite available to every human agent directly inside the conversation view",
    "cl.v23.i3": "Shared media library: all files sent/received across channels are indexed and searchable by contact",

    "cl.v22.title": "Knowledge Base 2.0 — Vision, Voice & Website",
    "cl.v22.i1": "Website crawling: point the KB at any URL and it scrapes, chunks, and embeds the content automatically with scheduled re-crawls",
    "cl.v22.i2": "Voice note transcription: record an audio note → transcribed to text → indexed in the knowledge base",
    "cl.v22.i3": "Vision processing: upload images or scanned documents → text extracted and added to the knowledge base",
    "cl.v22.i4": "Product catalog mode: attach a product list to the KB so the AI can make specific product recommendations in chat",
    "cl.v22.i5": "Batch reprocessing: re-embed all documents in one click when the underlying model is upgraded",

    "cl.v20.title": "AI-Powered Booking System",
    "cl.v20.i1": "Native booking engine: define service types, assign resources (staff, rooms, equipment), and set availability schedules",
    "cl.v20.i2": "Blocked-date management and real-time slot availability API for external integrations",
    "cl.v20.i3": "AI booking agent: the AI agent can check availability and confirm appointments entirely within a WhatsApp conversation — no redirect",
    "cl.v20.i4": "Booking confirmation and reminder messages sent automatically via WhatsApp",

    "cl.v18.title": "Web Chat Widget & Instagram Messaging",
    "cl.v18.i1": "Embeddable web chat widget for any website — one script tag, zero configuration, full conversation history synced to the inbox",
    "cl.v18.i2": "Instagram Direct Messages integrated into the unified inbox alongside WhatsApp",
    "cl.v18.i3": "Instagram bot replies, custom auto-responses, and AI agent support for DMs",
    "cl.v18.i4": "Widget session analytics: track visitor conversations, resolution rate, and drop-off per page",

    "cl.v16.title": "AI Agent — Context Memory & Intent Detection",
    "cl.v16.i1": "AI Agent builder: create named agents with custom system instructions, tone, and scope — assign per channel",
    "cl.v16.i2": "Context memory engine: the agent remembers the full conversation history and resolves follow-up questions without repetition",
    "cl.v16.i3": "Intent detection: classifies every incoming message into categories before routing to the right response path",
    "cl.v16.i4": "Human handoff: agent flags conversations that need a human and transfers with complete context preserved",

    "cl.v14.title": "Contact Intelligence & Segmentation",
    "cl.v14.i1": "Custom contact attributes: define any field (text, number, date, dropdown) and populate it manually or via incoming message data",
    "cl.v14.i2": "Contact lists and dynamic segments: group contacts by any attribute combination for targeted messaging",
    "cl.v14.i3": "Bulk import via CSV, bulk tagging, and one-click export — with field mapping to custom attributes",

    "cl.v10.title": "Platform Launch",
    "cl.v10.i1": "WhatsApp Business — send, receive, and manage all customer conversations in one unified inbox",
    "cl.v10.i2": "Knowledge base v1: upload PDFs and DOCX files — AI answers customer questions directly from your documents using semantic search",
    "cl.v10.i3": "Team management: invite team members, assign roles and permissions, and assign agents to conversations",
    "cl.v10.i4": "Contact management: full CRM layer with tagging, notes, import/export, and WhatsApp profile sync",

    "cl.v27.title": "REST API v1.5 — Full Platform Access for Developers",
    "cl.v27.i1": "108 new REST API endpoints covering AI agents, outreach campaigns, tickets, web chat, knowledge base, voice synthesis, and media library",
    "cl.v27.i2": "Media Manager API: upload images and videos programmatically, with strict per-account isolation — no cross-client data access possible",
    "cl.v27.i3": "Voice synthesis API: clone a custom voice from a sample recording and generate natural Arabic speech from any text",
    "cl.v27.i4": "Public developer documentation launched at docs.skylightchat.com — full reference with code examples in cURL, JS, and Python",
    "cl.v27.i5": "Security hardening: all API endpoints independently verified for client-level data isolation; segment targeting cross-client gap patched",

    "cl.v271.title": "Multimodal Vision Processing",
    "cl.v271.i1": "AI agents can now view, describe, and extract text from images, receipts, and invoices (OCR)",
    "cl.v271.i2": "Extracted text is automatically saved within the conversation context for accurate follow-up replies",
    "cl.v271.i3": "Specialized prompts added to handle screenshots, thank-you images, and official documents perfectly",

    "cl.v272.title": "Outreach Campaigns & Warm-up Mode",
    "cl.v272.i1": "Multi-stage outreach messaging campaigns with automated follow-ups for targeted lists and segments",
    "cl.v272.i2": "Automated warm-up mode: gradually increases daily message limits on new numbers to prevent spam flags",
    "cl.v272.i3": "Detailed delivery and response tracking dashboard for all active campaigns",

    "cl.v273.title": "LinkedIn Recruitment & AI Screening",
    "cl.v273.i1": "Post job listings on LinkedIn and sync applicants automatically to your dashboard",
    "cl.v273.i2": "AI-powered applicant screening: automatically scores and filters candidates based on custom requirements",
    "cl.v273.i3": "One-click resume download and recruitment stage pipeline (New, Under Review, Shortlisted, Rejected)",

    "cl.v274.title": "Arabic Dialects & Custom Voice Cloning",
    "cl.v274.i1": "AI voice notes now support 17+ ready-made Arabic dialects for natural localized communication",
    "cl.v274.i2": "Custom voice cloning: upload a short audio sample of your brand voice and generate speech instantly",
    "cl.v274.i3": "Audio processing optimized to M4A format for seamless native playback on WhatsApp and web chat",

    "cl.v275.title": "Long-Term Memory & Context Engine",
    "cl.v275.i1": "AI automatically extracts customer preferences, budgets, and objections during live conversations",
    "cl.v275.i2": "Extracted insights are saved as structured notes in the contact profile without human intervention",
    "cl.v275.i3": "Dynamic segment updates: contacts are automatically grouped into target segments as their memory notes change",

    "cl.v276.title": "Smart Writer Assistant",
    "cl.v276.i1": "Direct AI assistance inside the unified inbox for human support agents",
    "cl.v276.i2": "One-click smart reply suggestions based on conversation history and knowledge base",
    "cl.v276.i3": "Tone rewriter: instantly adjust draft messages to professional, friendly, or persuasive tones",

    "cl.v277.title": "Specialized AI Sub-Agents",
    "cl.v277.i1": "Introduction of specialized sub-agents running silently behind the main agent",
    "cl.v277.i2": "Booking Agent: checks real-time calendar availability and books appointments directly in chat",
    "cl.v277.i3": "Order Agent: searches product catalogs, creates orders, and tracks fulfillment status programmatically",

    "cl.v278.title": "Human-in-the-Loop Approval Workflows",
    "cl.v278.i1": "Set up approval gates for sensitive operations like social media publishing or high-cost actions",
    "cl.v278.i2": "AI pauses execution and generates an approval request waiting for a human manager's review",
    "cl.v278.i3": "Daily spending caps implemented across AI Studio tools to protect marketing budgets",

    "cl.v279.title": "Halla VoIP & Call Center Launch",
    "cl.v279.i1": "Launch of Halla (halla.skylightchat.com) - our real-time, two-way AI voice call platform",
    "cl.v279.i2": "Ultra-low latency audio streaming with natural turn-taking and conversational flow",
    "cl.v279.i3": "Automated missed-call recovery: triggers a WhatsApp conversation instantly when a call is missed",

    "cl.v280.title": "Halla 'Nouf' Saudi AI Persona",
    "cl.v280.i1": "Meet Nouf: our default Saudi-dialect AI voice agent persona for outbound sales and support",
    "cl.v280.i2": "Smart Interruption: Nouf instantly pauses speaking when the customer starts talking, mimicking human behavior",
    "cl.v280.i3": "Polite silence handling and custom scenarios to handle introductory questions gracefully",

    "cl.v281.title": "Halla Automated Call Queues",
    "cl.v281.i1": "Bulk outbound call campaigns with priority queues and automated retry logic",
    "cl.v281.i2": "Strict rate limiting: max 3 concurrent calls per account to prevent spam flags on telecom networks",
    "cl.v281.i3": "Full call recordings with real-time, side-by-side transcriptions for both speaker and customer",

    "cl.v282.title": "Daily AI Training Feedback",
    "cl.v282.i1": "AI analyzes human-agent conversations and calls to generate daily personalized training tips",
    "cl.v282.i2": "Performance scorecards tracking response times, customer satisfaction, and resolution rates",
    "cl.v282.i3": "Leaderboards and team performance analytics to boost support team efficiency",

    "cl.v283.title": "White-Label Partner Program",
    "cl.v283.i1": "Full white-label reseller dashboard for agencies and distributors",
    "cl.v283.i2": "Create sub-accounts, assign custom pricing plans, and manage client billing under your own brand",
    "cl.v283.i3": "Partner API v1 launched for automated client provisioning and plan assignment",

    "cl.v284.title": "Sentiment & Intent Classification",
    "cl.v284.i1": "Real-time sentiment analysis (positive, negative, neutral) on all incoming messages and calls",
    "cl.v284.i2": "Intent classification: automatically detects booking, order, or support intents to trigger correct workflows",
    "cl.v284.i3": "Automated escalation: flags frustrated customers and transfers them to human agents with full context",

    "cl.v285.title": "Halla WebRTC Browser Calling",
    "cl.v285.i1": "Floating WebRTC dialer widget integrated directly into the dashboard",
    "cl.v285.i2": "Human agents can make and receive phone calls directly from their browser with zero configuration",
    "cl.v285.i3": "One-click toggle between AI-handled and human-handled call modes for any phone line",

    "cl.v286.title": "Enterprise ERP & CRM Integrations",
    "cl.v286.i1": "Native bidirectional integration with enterprise ERP systems (including Odoo)",
    "cl.v286.i2": "AI agents can pull real-time customer context and push orders, invoices, and bookings directly to ERP",
    "cl.v286.i3": "Secure webhook events signed with HMAC-SHA256 for verified external system synchronization",

    "cl.cta.title": "Want early access to what's next?",
    "cl.cta.sub": "We share our roadmap with customers. Book a call and we'll walk you through what's coming.",
    "cl.cta.btn": "Book a Demo",

    // Contact Page
    "contact.breadcrumb": "Contact Us",
    "contact.freeConsult": "Free Consultation",
    "contact.freeConsultDesc": "Get a personalized demo tailored to your business needs.",
    "contact.quickSetup": "Quick Setup",
    "contact.quickSetupDesc": "Go live in days, not months.",
    "contact.dedicatedSupport": "Dedicated Support",
    "contact.dedicatedSupportDesc": "Priority support according to the enterprise support terms.",
    "contact.infoTitle": "Contact Information",
    "contact.email": "Email",
    "contact.whatsapp": "WhatsApp",
    "contact.office": "Office",
    "contact.officeLocation": "Dammam, Saudi Arabia",
    "contact.hours": "Hours",
    "contact.hoursValue": "Sun-Thu: 9AM-6PM (Dammam)",
    "contact.countryCode.SA": "SA +966",
    "contact.countryCode.AE": "UAE +971",
    "contact.countryCode.KW": "Kuwait +965",
    "contact.countryCode.BH": "Bahrain +973",
    "contact.countryCode.QA": "Qatar +974",
    "contact.countryCode.DZ": "Algeria +213",
    "contact.countryCode.EG": "Egypt +20",
    "contact.countryCode.US": "US +1",
    "contact.countryCode.UK": "UK +44",
    "contact.businessType.ecommerce": "E-Commerce",
    "contact.businessType.healthcare": "Healthcare",
    "contact.businessType.realestate": "Real Estate",
    "contact.businessType.education": "Education",
    "contact.businessType.retail": "Retail",
    "contact.businessType.hospitality": "Hospitality",
    "contact.businessType.logistics": "Logistics",
    "contact.businessType.finance": "Finance",
    "contact.businessType.government": "Government",
    "contact.businessType.saas": "SaaS / Tech",
    "contact.businessType.agency": "Agency",
    "contact.businessType.media": "Media",
    "contact.businessType.automotive": "Automotive",
    "contact.businessType.other": "Other",
    "contact.howHear.search": "Search Engine",
    "contact.howHear.google": "Google Search",
    "contact.howHear.social": "Social Media",
    "contact.howHear.linkedin": "LinkedIn",
    "contact.howHear.referral": "Friend/Colleague Referral",
    "contact.howHear.event": "Event / Conference",
    "contact.howHear.blog": "Blog / Article",
    "contact.howHear.whatsapp": "WhatsApp",
    "contact.howHear.cold_call": "Cold Call / Outreach",
    "contact.howHear.partner": "Partner / Reseller",
    "contact.howHear.advertisement": "Advertisement",
    "contact.howHear.other": "Other",
    "contact.enterpriseTitle": "Enterprise Inquiries",
    "contact.enterpriseDesc": "For large deployments, custom integrations, or on-premise solutions.",
    "contact.activeClients": "Regional Focus",
    "contact.avgResponse": "Avg Response Time",
    "contact.avgResponseValue": "10h",
    "contact.poweredBy": "Powered by",
    "cookie.title": "We use cookies",
    "cookie.desc": "We use cookies and similar technologies to improve your experience, analyze traffic, and personalize content. By accepting, you agree to our",
    "cookie.privacyLink": "Privacy Policy",
    "cookie.accept": "Accept All",
    "cookie.decline": "Decline",
    "cookie.ariaLabel": "Cookie consent",
    "contact.bookDemo": "Book Your Demo",
    "contact.bookDemoSub": "Tell us about your business and we'll prepare a personal demo.",
    "contact.firstName": "First Name",
    "contact.lastName": "Last Name",
    "contact.workEmail": "Work Email",
    "contact.phone": "Phone Number",
    "contact.company": "Company Name",
    "contact.website": "Company Website (optional)",
    "contact.businessType": "Business Type",
    "contact.businessTypePlaceholder": "Select business type",
    "contact.howHear": "How did you hear about us?",
    "contact.howHearPlaceholder": "Select an option",
    "contact.submit": "Book Your Demo",
    "contact.secure": "Your data is secure",
    "contact.response24h": "Response within 10h on business days",
    "contact.freeConsultBadge": "Free consultation",
    "contact.thankYou": "Thank you!",
    "contact.thankYouMsg": "We will contact you soon.",
    "contact.backHome": "Back to Home",
  },
  ar: {
    // Metadata
    "meta.title": "سكاي لايت شات - منصة روبوت الدردشة بالذكاء الاصطناعي",
    "meta.description": "يساعد سكاي لايت شات الفرق على تنظيم القنوات المدعومة والمعرفة والتحويل البشري والحملات وتدفقات هلا الصوتية.",

    // Hero Section
    "hero.title": "نظّم محادثات العملاء بمساعدة الذكاء الاصطناعي",
    "hero.description": "اربط القنوات المدعومة، وحدد المعرفة والإجراءات، وأبقِ البشر مسؤولين عن الحالات الاستثنائية، وقس التدفق وفق أهداف خدمتك.",
    "hero.cta": "استكشف سكاي لايت شات",

    // Features Section
    "features.title": "ابنِ سير عمل يستطيع فريقك اختباره",
    "features.feature1.title": "دعم متعدد اللغات و اللهجات",
    "features.feature1.description": "اضبط اللغات المطلوبة ثم اختبر كل لهجة ومسار مختلط مع متحدثين أصليين.",
    "features.feature2.title": "ضوابط النية والمهمة والنبرة",
    "features.feature2.description": "حدد النوايا المدعومة والإجراءات المسموحة والنبرة وحدود الثقة وقواعد التصعيد.",
    "features.feature3.title": "سياق العميل ذي الصلة",
    "features.feature3.description": "استخدم فقط السياق والسجل المسموح بهما وفق الهوية والصلاحيات وتقليل البيانات والاحتفاظ.",

    // About Section 1
    "about1.title": "امنح الوكيل مهمة محدودة",
    "about1.description": "صمم نبرته وقواعده بما يناسب جمهورك ومستوى المخاطر.",
    "about1.list1": "اكتب موجزاً بالمهام والمصادر المعتمدة والإجراءات الممنوعة ومقاييس النجاح.",
    "about1.list2": "فعّل فقط القنوات والتكاملات المدعومة التي تحتاجها التجربة.",
    "about1.list3": "عيّن مالكاً بشرياً مسؤولاً عن المراجعة والاستثناءات والتراجع.",

    // About Section 2
    "about2.title": "اختبر المهام المتكررة أولاً",
    "about2.description": "ابدأ بأسئلة أو توجيه منخفض المخاطر، وقس الدقة والتحويل، ولا تتوسع إلا عندما تدعم النتائج ذلك.",
    "about2.list1": "قس زمن الرد ودقة الحقائق والحالات غير المحلولة.",
    "about2.list2": "اضبط الطابور والتزامن والمهلة وفشل المزود.",
    "about2.list3": "حوّل الطلبات الحساسة أو غير الواثقة أو غير المدعومة إلى موظف.",

    // About Section 3
    "about3.title": "استند في الإجابات إلى مصادر مراجعة",
    "about3.description1": "أضف مواد العمل والمنتجات والخدمات والسياسات المعتمدة مع مالك وتاريخ مراجعة.",
    "about3.description2": "اختبر الاسترجاع والمعلومة القديمة وغياب الدليل والتحويل البشري قبل ربط حركة العملاء.",
    "about3.cta": "ابدأ تجربة مضبوطة",

    // Brand Section
    "brand.title": "يتكامل مع قنواتك المفضلة",
    "brand.description": "راجع القنوات المتاحة في باقتك وحساب المزود والمنطقة والإعداد، ثم اختبر الهوية والتحويل بينها.",
    "brand.list1": "قنوات المراسلة والصوت المدعومة",
    "brand.list2": "خيارات الصندوق المشترك وسياق العميل",
    "brand.cta": "راجع التكاملات",

  
    // FAQ Section
    "partnerSpotlight.label": "شريك",
    "partnerSpotlight.hrwhats": "اكتشف ايضا شريكنا لخدمات واتساب الموثقة والرسمية",
    "faq.title": "الأسئلة الشائعة حول سكاي لايت شات",
    "faq1.question": "ما هو سكاي لايت شات وكيف يتكامل مع قنوات المراسلة؟",
    "faq1.answer": "سكاي لايت شات منصة لتواصل العملاء عبر مسارات المراسلة والويب وهلا الصوتية المدعومة. يختلف توافر القناة والمزود والمنطقة والباقة؛ أكد طريقة الربط والصلاحيات في الوثائق الحالية وعرض مضبوط.",
    "faq2.question": "كيف تتعلم قاعدة المعرفة 2.0 عن أعمالي وتجارتي؟",
    "faq2.answer": "يمكنك إضافة المستندات والنصوص أو مصادر الويب المدعومة إلى قاعدة المعرفة. عيّن مالكاً واحذف المادة القديمة واختبر الاستشهادات والصلاحيات، وتحقق من قدرات الملفات والزحف والصور والصوت المفعلة لحسابك.",
    "faq3.question": "ما هو SkylightTalk وهل يمكن للذكاء الاصطناعي إرسال رسائل صوتية؟",
    "faq3.answer": "يوفر SkylightTalk وهلا خيارات صوتية في الإعدادات المدعومة. أكد توافر القناة والباقة، واحصل على الحقوق والموافقات المطلوبة لأي عينة صوت، وافصح عن الصوت الصناعي عند اللزوم، واختبر الجودة والمسار البديل.",
    "faq4.question": "كيف يعمل نظام الحجز والطلبات التلقائي بالذكاء الاصطناعي؟",
    "faq4.answer": "يمكن لمسارات الحجز والطلبات استخدام الخدمات والموارد والجداول والتكاملات المضبوطة. اختبر تعارض المواعيد والهوية والتأكيد وتكرار الطلب والإلغاء والتذكير والتحويل للإعداد المختار.",
    "faq5.question": "هل يمكنني تشغيل حملات تسويقية وإرسال رسائل جماعية؟",
    "faq5.answer": "يمكن لميزات الحملات دعم الشرائح المؤهلة والقوالب المعتمدة. يبقى المرسل مسؤولاً عن الإذن وسياسة المزود وفئة القالب وساعات الهدوء والتكرار ودقة التخصيص ومزامنة الإيقاف وقياس النتائج.",
    "faq6.question": "هل هناك ميزة لتحويل المحادثة إلى موظف بشري عند الحاجة؟",
    "faq6.answer": "يمكن لقواعد المراجعة البشرية توجيه الطلب المباشر أو عدم اليقين أو الحالة الحساسة إلى قائمة مضبوطة. اختبر نقل السياق ذي الصلة والمسموح فقط، ومسار فشل أو تأخر التحويل.",
    "faq7.question": "كيف يتعامل الذكاء الاصطناعي مع استفسارات العملاء حول الطلبات والمنتجات؟",
    "faq7.answer": "في إعداد سلة أو زد المدعوم، اختبر حقول الطلب والتتبع والمخزون والسلة والمنتج المتاحة فعلياً. تحقق من هوية العميل قبل كشف بيانات الطلب، وحوّل النتيجة الناقصة أو القديمة أو المتعارضة إلى موظف.",
    "faq8.question": "هل يدعم سكاي لايت شات أتمتة منصة لينكد إن؟",
    "faq8.answer": "تعتمد مسارات لينكد إن على وصول المزود وصلاحيات الحساب والمنطقة والباقة الحالية. أكد عمليات البحث والتواصل والتوظيف المعتمدة، واتبع سياسات لينكد إن، وأبقِ البشر مسؤولين عن قرارات التوظيف.",
    "faq9.question": "ما مدى أمان سكاي لايت شات وهل تتوفر واجهة برمجة تطبيقات للمطورين؟",
    "faq9.answer": "اطلب الوثائق الحالية للمصادقة والأدوار وفصل المستأجرين والسجلات والاحتفاظ والحذف والمعالجين والحوادث وتوافر SSO. على المطور استخدام نقاط النهاية وWebhooks والحدود وطرق التحقق الموثقة لباقته فقط.",
    "faq10.question": "ما هو نظام هلا (Halla) الهاتفي، وكيف يتعامل مع المكالمات الصوتية واستعادة المكالمات الفائتة؟",
    "faq10.answer": "هلا منتج الصوت وVoIP من سكاي لايت شات. أكد توافر الرقم والوارد والصادر والتسجيل والمنطقة والباقة. اختبر إشعار المتصل وجودة العربية والإنجليزية والزمن والمقاطعة والإجراءات والتحويل البشري والمتابعة المصرح بها للمكالمة الفائتة.",

    // أمثلة توضيحية للتدفقات (وليست شهادات عملاء)
    "testimonial.title": "أمثلة على تدفقات العمل",
    "testimonial1.quote": "ربط سلة بدعم واتساب.",
    "testimonial1.text": "يمكن لفريق المتجر الإجابة عن المنتجات والطلبات ومتابعة السلات وتحويل الحالات الاستثنائية إلى موظف من صندوق واحد.",
    "testimonial1.name": "مثال توضيحي",
    "testimonial1.title": "تدفق تجارة إلكترونية",
    "testimonial2.quote": "تنظيم حجز المواعيد.",
    "testimonial2.text": "يمكن للعيادة فحص المواعيد المتاحة وإرسال التذكيرات وجمع المعلومات المعتمدة مع إبقاء الموظفين مسؤولين عن الطلبات الحساسة.",
    "testimonial2.name": "مثال توضيحي",
    "testimonial2.title": "تدفق حجوزات",
    "testimonial3.quote": "تنظيم التواصل مع المرشحين.",
    "testimonial3.text": "يمكن لفريق التوظيف تنظيم التواصل وجمع الطلبات وتلخيص معلومات المرشحين وجدولة المقابلات مع مراجعة بشرية.",
    "testimonial3.name": "مثال توضيحي",
    "testimonial3.title": "تدفق توظيف",

    // Pricing Section
    "pricing.title": "اختر عرضك المثالي",
    "pricing.subtitle": "وسّع أعمالك مع الأتمتة بالذكاء الاصطناعي. اختر العرض التي تناسب احتياجاتك.",
    "pricing.monthly": "شهري",
    "pricing.yearly": "سنوي",
    "pricing.save": "وفّر",
    "pricing.perMonth": "شهرياً",
    "pricing.perYear": "سنوياً",
    "pricing.youSave": "توفر",
    "pricing.getStarted": "ابدأ الآن",
    "pricing.mostPopular": "الأكثر شعبية",
    "pricing.whatsIncluded": "ما يتضمنه",
    "pricing.unlimited": "غير محدود",
    "pricing.basic.name": "الأساسي",
    "pricing.basic.description": "جرب أتمتة الذكاء الاصطناعي مع الميزات الأساسية بسعر معقول.",
    "pricing.starter.name": "المبتدئ",
    "pricing.starter.description": "مثالي للشركات الصغيرة التي بدأت للتو مع أتمتة الذكاء الاصطناعي.",
    "pricing.professional.name": "الإحترافي",
    "pricing.professional.description": "مثالي للشركات النامية التي تحتاج إلى المزيد من القوة والتكاملات.",
    "pricing.premium.name": "المميز",
    "pricing.premium.description": "للمؤسسات التي تتطلب أقصى سعة وجميع تكاملات المنصات.",
    "pricing.feature.teamMembers": "أعضاء الفريق",
    "pricing.feature.connections": "جهات الاتصال",
    "pricing.feature.conversations": "المحادثات",
    "pricing.feature.aiResponses": "ردود الذكاء الاصطناعي",
    "pricing.feature.aiTickets": "تذاكر الذكاء الاصطناعي",
    "pricing.feature.sitePages": "صفحات الموقع المسحوبة",
    "pricing.feature.flowCreators": "منشئو التدفقات",
    "pricing.feature.mediaFiles": "ملفات الوسائط",
    "pricing.feature.knowledgeBases": "قواعد المعرفة",
    "pricing.feature.channels": "القنوات",
    "pricing.feature.paymentLinks": "روابط الدفع",
    "pricing.feature.bookingsTables": "جداول الحجوزات والطلبات",
    "pricing.feature.webChat": "ويدجت الدردشة",
    "pricing.feature.voiceMessages": "الرسائل الصوتية",
    "pricing.info.teamMembers": "عدد أعضاء الفريق الذين يمكنهم الوصول إلى المنصة وإدارتها",
    "pricing.info.connections": "الحد الأقصى لعدد جهات اتصال العملاء التي يمكنك تخزينها والتواصل معها",
    "pricing.info.conversations": "إجمالي عدد المحادثات شهرياً",
    "pricing.info.aiResponses": "عدد الردود التي يمكن للذكاء الاصطناعي إرسالها شهرياً",
    "pricing.info.aiTickets": "تذاكر الدعم التي يمكن للذكاء الاصطناعي التعامل معها تلقائياً",
    "pricing.info.sitePages": "عدد صفحات الموقع التي يمكن سحبها لقاعدة المعرفة",
    "pricing.info.flowCreators": "أدوات بناء التدفقات المرئية لإنشاء مسارات محادثة آلية",
    "pricing.info.mediaFiles": "عدد ملفات الوسائط (صور، فيديوهات) التي يمكنك رفعها",
    "pricing.info.knowledgeBases": "قواعد معرفة نصية أو صوتية أو مستندات أو مواقع ",
    "pricing.info.channels": "عدد قنوات التواصل (واتساب، إنستغرام)",
    "pricing.info.paymentLinks": "إنشاء وإرسال روابط الدفع مباشرة في المحادثات",
    "pricing.info.bookingsTables": "إدارة الحجوزات والطلبات مع جداول مدمجة ونظام تتبع",
    "pricing.info.webChat": "ويدجت دردشة قابلة للتضمين في موقعك",
    "pricing.info.voiceMessages": "الرد الذكي على الرسائل الصوتية في المحادثات",
    "pricing.showingPricesIn": "الأسعار معروضة بـ",
    "pricing.detectingLocation": "جاري تحديد موقعك...",
    "pricing.showCalculator": "احسب سعرك المخصص",
    "pricing.hideCalculator": "إخفاء الحاسبة",
    "pricing.calculatorTitle": "حاسبة السعر المخصص",
    "pricing.estimatedPrice": "السعر الشهري المقدر",
    "pricing.estimationDisclaimer": "هذا تقدير فقط. قد يختلف السعر الفعلي بناءً على احتياجاتك المحددة وأنماط الاستخدام. تواصل معنا للحصول على عرض سعر مخصص.",

    // Use Cases Section
    "useCases.title": "حلول ذكية تناسب أي مجال",
    "useCases.subtitle": "سكاي لايت شات مو محصور في خدمة العملاء، تقدر تستخدمه في التعليم، الصحة، التجارة، العقار، السياحة، وأي مجال ثاني يحتاج تواصل ذكي وسريع.",
    "useCases.keyBenefits": "الفوائد الرئيسية",
    "useCases.usageExamples": "أمثلة الاستخدام",
    "useCases.expectedResults": "النتائج المتوقعة",
    
    // Education
    "useCases.education.name": "التعليم والمدارس",
    "useCases.education.description": "حلول ذكية للمؤسسات التعليمية لتحسين التواصل مع الطلاب وأولياء الأمور.",
    "useCases.education.results": "إجابة أسرع عن أسئلة أولياء الأمور مع تحويل الحالات المعقدة للموظفين.",
    "useCases.education.benefit1": "الرد على استفسارات القبول والتسجيل",
    "useCases.education.benefit2": "إرسال تذكيرات المواعيد والامتحانات",
    "useCases.education.benefit3": "متابعة تقدم الطلاب وإشعار الأهالي",
    "useCases.education.benefit4": "الإجابة عن الأسئلة الأكاديمية الشائعة",
    "useCases.education.example1": "استقبال طلبات التسجيل الجديدة",
    "useCases.education.example2": "الرد على استفسارات المناهج والبرامج",
    "useCases.education.example3": "إرسال النتائج والتقارير للأهالي",
    "useCases.education.example4": "تنظيم المواعيد والاجتماعات",
    
    // Tourism
    "useCases.tourism.name": "مكاتب السياحة والسفر",
    "useCases.tourism.description": "معالجة أسئلة الحجز الشائعة خارج ساعات العمل وتحويل الحالات الاستثنائية إلى موظف.",
    "useCases.tourism.results": "معالجة الأسئلة الشائعة خارج ساعات العمل مع مسار بديل واضح.",
    "useCases.tourism.benefit1": "مساعدة فورية في حجز الطيران والفنادق",
    "useCases.tourism.benefit2": "معلومات برنامج الرحلة خارج ساعات العمل مع تحويل",
    "useCases.tourism.benefit3": "إرشادات التأشيرة والوثائق آلياً",
    "useCases.tourism.benefit4": "تحديثات وتنبيهات السفر المباشرة",
    "useCases.tourism.example1": "استفسارات الباقات",
    "useCases.tourism.example2": "تأكيدات الحجز",
    "useCases.tourism.example3": "توصيات السفر",
    "useCases.tourism.example4": "مقارنة الأسعار",
    
    // Customer Support
    "useCases.support.name": "التواصل مع العملاء",
    "useCases.support.description": "حوّل خدمة العملاء لديك بدعم ذكي يعمل دون توقف.",
    "useCases.support.results": "معالجة الأسئلة المتكررة مع إبقاء التحويل إلى الموظف متاحاً.",
    "useCases.support.benefit1": "رد فوري على الأسئلة الشائعة",
    "useCases.support.benefit2": "توجيه التذاكر وترتيب الأولويات بذكاء",
    "useCases.support.benefit3": "دعم متعدد اللغات",
    "useCases.support.benefit4": "تحويل سلس للوكلاء البشريين",
    "useCases.support.example1": "أتمتة الأسئلة الشائعة",
    "useCases.support.example2": "تحديثات حالة الطلب",
    "useCases.support.example3": "معالجة الشكاوى",
    "useCases.support.example4": "طلبات الإرجاع",
    
    // E-commerce
    "useCases.ecommerce.name": "التجارة الإلكترونية",
    "useCases.ecommerce.description": "عزز مبيعاتك بمساعدي تسوق ذكيين يرشدون العملاء خلال رحلتهم.",
    "useCases.ecommerce.results": "إرشاد المتسوقين ومتابعة السلات المتروكة وإتاحة تحديثات الطلبات.",
    "useCases.ecommerce.benefit1": "توصيات ومقارنات المنتجات",
    "useCases.ecommerce.benefit2": "تتبع الطلبات والتحديثات",
    "useCases.ecommerce.benefit3": "توفر المخزون الفوري",
    "useCases.ecommerce.benefit4": "مساعدة تسوق شخصية",
    "useCases.ecommerce.example1": "البحث عن منتج",
    "useCases.ecommerce.example2": "دليل المقاسات",
    "useCases.ecommerce.example3": "دعم الدفع",
    "useCases.ecommerce.example4": "تتبع التوصيل",
    
    // Healthcare
    "useCases.healthcare.name": "الصحة والمستشفيات",
    "useCases.healthcare.description": "تبسيط التواصل مع المرضى وإدارة المواعيد بمساعدة الذكاء الاصطناعي.",
    "useCases.healthcare.results": "أتمتة التذكيرات وأسئلة المواعيد الروتينية مع إشراف بشري.",
    "useCases.healthcare.benefit1": "جدولة المواعيد والتذكيرات",
    "useCases.healthcare.benefit2": "جمع نماذج ما قبل الزيارة",
    "useCases.healthcare.benefit3": "معلومات صحية عامة",
    "useCases.healthcare.benefit4": "إشعارات نتائج التحاليل",
    "useCases.healthcare.example1": "حجز المواعيد",
    "useCases.healthcare.example2": "استفسارات التأمين",
    "useCases.healthcare.example3": "إعادة صرف الوصفات",
    "useCases.healthcare.example4": "أوقات العيادة",
    
    // Real Estate
    "useCases.realestate.name": "العقارات",
    "useCases.realestate.description": "جمع معلومات العملاء وجدولة المعاينات المدعومة مع تحويل الحالات غير الواضحة.",
    "useCases.realestate.results": "استقبال الاستفسارات خارج ساعات العمل وتوجيهها وفق قواعد محددة.",
    "useCases.realestate.benefit1": "استفسارات توفر العقارات",
    "useCases.realestate.benefit2": "جدولة المعاينات آلياً",
    "useCases.realestate.benefit3": "تأهيل ومتابعة العملاء المحتملين",
    "useCases.realestate.benefit4": "معلومات الأسعار والمميزات",
    "useCases.realestate.example1": "البحث عن عقار",
    "useCases.realestate.example2": "جدولة المعاينات",
    "useCases.realestate.example3": "حاسبة التمويل",
    "useCases.realestate.example4": "طلب المستندات",

    // Restaurant (Landing Page)
    "useCases.restaurant.name": "المطاعم",
    "useCases.restaurant.description": "إدارة الحجوزات والطلبات واستفسارات القائمة آلياً بينما يركز فريقك على الخدمة.",
    "useCases.restaurant.results": "تسهيل الطلبات الإلكترونية وتقليل طلبات الحجز غير المتابعة.",
    "useCases.restaurant.benefit1": "حجوزات الطاولات وقوائم الانتظار",
    "useCases.restaurant.benefit2": "الطلب عبر الإنترنت والتوصيل",
    "useCases.restaurant.benefit3": "معلومات القائمة والنظام الغذائي",
    "useCases.restaurant.benefit4": "استفسارات التموين",
    "useCases.restaurant.example1": "حجز طاولة",
    "useCases.restaurant.example2": "طلب طعام",
    "useCases.restaurant.example3": "معلومات القائمة",
    "useCases.restaurant.example4": "التموين",

    // Banking (Landing Page)
    "useCases.banking.name": "البنوك",
    "useCases.banking.description": "مساعدة بنكية آمنة وفورية لاستفسارات الحسابات والمعاملات.",
    "useCases.banking.results": "معالجة الأسئلة الروتينية وتحويل الطلبات المنظمة إلى الموظفين.",
    "useCases.banking.benefit1": "رصيد الحساب والسجل",
    "useCases.banking.benefit2": "التحويلات ودفع الفواتير",
    "useCases.banking.benefit3": "استفسارات القروض والبطاقات",
    "useCases.banking.benefit4": "تنبيهات الاحتيال",
    "useCases.banking.example1": "فحص الرصيد",
    "useCases.banking.example2": "تحويل",
    "useCases.banking.example3": "حالة القرض",
    "useCases.banking.example4": "خدمات البطاقات",

    // HR (Landing Page)
    "useCases.hr.name": "الموارد البشرية",
    "useCases.hr.description": "تبسيط التوظيف والتأهيل واستفسارات الموارد البشرية بأتمتة ذكية.",
    "useCases.hr.results": "تقصير الفرز الأولي وتوجيه أسئلة الموظفين بصورة متسقة.",
    "useCases.hr.benefit1": "فرز الطلبات",
    "useCases.hr.benefit2": "تأهيل الموظفين",
    "useCases.hr.benefit3": "طلبات الإجازات",
    "useCases.hr.benefit4": "استفسارات المزايا",
    "useCases.hr.example1": "تقدم للوظيفة",
    "useCases.hr.example2": "طلب إجازة",
    "useCases.hr.example3": "المزايا",
    "useCases.hr.example4": "الرواتب",

    // Automotive (Landing Page)
    "useCases.automotive.name": "السيارات",
    "useCases.automotive.description": "أتمتة تجارب القيادة ومواعيد الصيانة واستفسارات المركبات.",
    "useCases.automotive.results": "تسهيل حجز تجارب القيادة ومواعيد الصيانة عبر القنوات.",
    "useCases.automotive.benefit1": "جدولة تجربة القيادة",
    "useCases.automotive.benefit2": "مواعيد الصيانة",
    "useCases.automotive.benefit3": "توفر قطع الغيار",
    "useCases.automotive.benefit4": "خيارات التمويل",
    "useCases.automotive.example1": "تجربة القيادة",
    "useCases.automotive.example2": "الصيانة",
    "useCases.automotive.example3": "قطع الغيار",
    "useCases.automotive.example4": "التمويل",

    // View All Link
    "useCases.viewAll": "عرض جميع القطاعات (+20)",

    // Use Cases Page
    "useCasesPage.title": "ردود أسرع، أعمال أسهل مهما كان قطاعك",
    "useCasesPage.badge": "القطاعات",
    "useCasesPage.subtitle": "سكاي لايت شات يدعم الأتمتة الذكية في أكثر من 20 قطاعاً. من التعليم إلى الرعاية الصحية، ومن التجارة الإلكترونية إلى الخدمات الحكومية - اكتشف كيف يمكن لروبوتات الدردشة الذكية تحويل عملياتك التجارية وتجربة العملاء.",
    "useCasesPage.cta.title": "هل أنت جاهز لتحويل عملك؟",
    "useCasesPage.cta.subtitle": "انضم لآلاف الشركات التي تستخدم سكاي لايت شات لأتمتة التواصل مع العملاء",
    "useCasesPage.cta.button": "ابدأ التجربة المجانية",

    // Education Industry
    "useCasesPage.education.name": "التعليم والمدارس",
    "useCasesPage.education.description": "حلول ذكية للمؤسسات التعليمية لتبسيط التواصل مع الطلاب وأولياء الأمور والموظفين مع أتمتة المهام الإدارية.",
    "useCasesPage.education.results": "إجابات أسرع للأسئلة الروتينية مع تحويل الحالات التي تحتاج موظفاً",
    "useCasesPage.education.benefit1": "أتمتة استفسارات القبول وعمليات التسجيل",
    "useCasesPage.education.benefit2": "إرسال جداول الامتحانات والدرجات وتقارير التقدم",
    "useCasesPage.education.benefit3": "التعامل مع مدفوعات الرسوم وأسئلة المنح",
    "useCasesPage.education.benefit4": "توفير معلومات المواد خارج ساعات العمل مع التصعيد",
    "useCasesPage.education.example1": "تسجيل الطلاب",
    "useCasesPage.education.example2": "استفسارات الرسوم",
    "useCasesPage.education.example3": "تقارير الدرجات",
    "useCasesPage.education.example4": "اجتماعات الأهالي",

    // Healthcare Industry
    "useCasesPage.healthcare.name": "الرعاية الصحية والعيادات",
    "useCasesPage.healthcare.description": "تبسيط التواصل مع المرضى وإدارة المواعيد وتقديم المعلومات الصحية بمساعدة الذكاء الاصطناعي.",
    "useCasesPage.healthcare.results": "تذكيرات متسقة ودعم روتيني للمواعيد مع إشراف بشري",
    "useCasesPage.healthcare.benefit1": "جدولة المواعيد والتذكيرات الآلية",
    "useCasesPage.healthcare.benefit2": "جمع نماذج ما قبل الزيارة والتحقق من التأمين",
    "useCasesPage.healthcare.benefit3": "إشعارات نتائج التحاليل وجدولة المتابعة",
    "useCasesPage.healthcare.benefit4": "معلومات صحية عامة وتذكيرات الأدوية",
    "useCasesPage.healthcare.example1": "حجز المواعيد",
    "useCasesPage.healthcare.example2": "استفسارات التأمين",
    "useCasesPage.healthcare.example3": "إعادة صرف الوصفات",
    "useCasesPage.healthcare.example4": "نتائج التحاليل",

    // E-commerce Industry
    "useCasesPage.ecommerce.name": "التجارة الإلكترونية والتجزئة",
    "useCasesPage.ecommerce.description": "زيادة المبيعات عبر الإنترنت مع مساعدي تسوق ذكيين يرشدون العملاء ويستعيدون السلات المتروكة ويقدمون دعماً فورياً.",
    "useCasesPage.ecommerce.results": "تسوق موجّه ومتابعة للسلات وتحديثات سهلة للطلبات",
    "useCasesPage.ecommerce.benefit1": "توصيات ومقارنات المنتجات",
    "useCasesPage.ecommerce.benefit2": "تتبع الطلبات وتحديثات التوصيل",
    "useCasesPage.ecommerce.benefit3": "معالجة المرتجعات والمبالغ المستردة والاستبدال",
    "useCasesPage.ecommerce.benefit4": "فحص المخزون ودليل المقاسات",
    "useCasesPage.ecommerce.example1": "البحث عن منتج",
    "useCasesPage.ecommerce.example2": "حالة الطلب",
    "useCasesPage.ecommerce.example3": "دليل المقاسات",
    "useCasesPage.ecommerce.example4": "طلب الإرجاع",

    // Real Estate Industry
    "useCasesPage.realestate.name": "العقارات والممتلكات",
    "useCasesPage.realestate.description": "جمع معلومات العملاء وجدولة المعاينات وتقديم بيانات العقار المعتمدة مع تحويل الحالات الاستثنائية.",
    "useCasesPage.realestate.results": "استقبال الاستفسارات خارج ساعات العمل وتوجيهها وفق قواعد محددة",
    "useCasesPage.realestate.benefit1": "استفسارات توفر العقارات والأسعار",
    "useCasesPage.realestate.benefit2": "جدولة المعاينات والجولات آلياً",
    "useCasesPage.realestate.benefit3": "حاسبة التمويل وخيارات التمويل",
    "useCasesPage.realestate.benefit4": "تأهيل العملاء ومطابقة الوكلاء",
    "useCasesPage.realestate.example1": "البحث عن عقار",
    "useCasesPage.realestate.example2": "جدولة المعاينة",
    "useCasesPage.realestate.example3": "استفسار السعر",
    "useCasesPage.realestate.example4": "طلب المستندات",

    // Tourism Industry
    "useCasesPage.tourism.name": "السفر والسياحة",
    "useCasesPage.tourism.description": "معالجة أسئلة الحجز والوجهات المدعومة خارج ساعات العمل مع تحويل بشري واضح.",
    "useCasesPage.tourism.results": "إجابات لأسئلة الحجز الروتينية وتحويل واضح للحالات الاستثنائية",
    "useCasesPage.tourism.benefit1": "مساعدة حجز الطيران والفنادق",
    "useCasesPage.tourism.benefit2": "إدارة وتحديثات برنامج الرحلة",
    "useCasesPage.tourism.benefit3": "إرشادات متطلبات التأشيرة والوثائق",
    "useCasesPage.tourism.benefit4": "توصيات الوجهات ونصائح محلية",
    "useCasesPage.tourism.example1": "عروض الباقات",
    "useCasesPage.tourism.example2": "حالة الحجز",
    "useCasesPage.tourism.example3": "معلومات التأشيرة",
    "useCasesPage.tourism.example4": "نصائح السفر",

    // Restaurant Industry
    "useCasesPage.restaurant.name": "المطاعم وخدمات الطعام",
    "useCasesPage.restaurant.description": "إدارة الحجوزات واستلام الطلبات والإجابة على أسئلة القائمة آلياً بينما يركز فريقك على الخدمة.",
    "useCasesPage.restaurant.results": "طلبات إلكترونية أسهل وتقليل طلبات الحجز غير المتابعة",
    "useCasesPage.restaurant.benefit1": "حجز الطاولات وإدارة قوائم الانتظار",
    "useCasesPage.restaurant.benefit2": "الطلب عبر الإنترنت وتتبع التوصيل",
    "useCasesPage.restaurant.benefit3": "معلومات القائمة والمتطلبات الغذائية",
    "useCasesPage.restaurant.benefit4": "استفسارات المناسبات الخاصة والتموين",
    "useCasesPage.restaurant.example1": "حجز طاولة",
    "useCasesPage.restaurant.example2": "طلب طعام",
    "useCasesPage.restaurant.example3": "معلومات القائمة",
    "useCasesPage.restaurant.example4": "التموين",

    // Banking Industry
    "useCasesPage.banking.name": "البنوك والمالية",
    "useCasesPage.banking.description": "تقديم مساعدة بنكية آمنة وفورية لاستفسارات الحسابات والمعاملات ومعلومات المنتجات المالية.",
    "useCasesPage.banking.results": "إجابات روتينية وتحويل الطلبات المنظمة إلى الموظفين",
    "useCasesPage.banking.benefit1": "رصيد الحساب وسجل المعاملات",
    "useCasesPage.banking.benefit2": "تحويل الأموال ودفع الفواتير",
    "useCasesPage.banking.benefit3": "استفسارات القروض وبطاقات الائتمان",
    "useCasesPage.banking.benefit4": "تنبيهات الاحتيال وإشعارات الأمان",
    "useCasesPage.banking.example1": "فحص الرصيد",
    "useCasesPage.banking.example2": "تحويل الأموال",
    "useCasesPage.banking.example3": "حالة القرض",
    "useCasesPage.banking.example4": "خدمات البطاقات",

    // Insurance Industry
    "useCasesPage.insurance.name": "خدمات التأمين",
    "useCasesPage.insurance.description": "تبسيط استفسارات الوثائق ومعالجة المطالبات وإنشاء عروض الأسعار بأتمتة ذكية.",
    "useCasesPage.insurance.results": "استقبال منظم وتحديثات حالة وتحويل المطالبات إلى الموظفين",
    "useCasesPage.insurance.benefit1": "معلومات الوثيقة وتفاصيل التغطية",
    "useCasesPage.insurance.benefit2": "تقديم المطالبات وتتبع حالتها",
    "useCasesPage.insurance.benefit3": "إنشاء عروض الأسعار والمقارنة",
    "useCasesPage.insurance.benefit4": "تذكيرات التجديد ومعالجة المدفوعات",
    "useCasesPage.insurance.example1": "احصل على عرض سعر",
    "useCasesPage.insurance.example2": "قدم مطالبة",
    "useCasesPage.insurance.example3": "معلومات الوثيقة",
    "useCasesPage.insurance.example4": "التجديدات",

    // Automotive Industry
    "useCasesPage.automotive.name": "السيارات والوكالات",
    "useCasesPage.automotive.description": "أتمتة حجوزات تجربة القيادة ومواعيد الصيانة واستفسارات المركبات لوكالات السيارات ومراكز الخدمة.",
    "useCasesPage.automotive.results": "تسهيل حجز تجارب القيادة ومواعيد الصيانة",
    "useCasesPage.automotive.benefit1": "جدولة تجربة القيادة ومعلومات المركبات",
    "useCasesPage.automotive.benefit2": "حجز مواعيد الصيانة والتذكيرات",
    "useCasesPage.automotive.benefit3": "توفر قطع الغيار والأسعار",
    "useCasesPage.automotive.benefit4": "خيارات التمويل وتقييمات الاستبدال",
    "useCasesPage.automotive.example1": "تجربة القيادة",
    "useCasesPage.automotive.example2": "حجز الصيانة",
    "useCasesPage.automotive.example3": "استفسار قطع الغيار",
    "useCasesPage.automotive.example4": "التمويل",

    // Fitness Industry
    "useCasesPage.fitness.name": "اللياقة والعافية",
    "useCasesPage.fitness.description": "إدارة حجوزات الصفوف واستفسارات العضويات وتقديم إرشادات اللياقة بمساعدة الذكاء الاصطناعي.",
    "useCasesPage.fitness.results": "حجز أسهل للحصص وتذكيرات وإجابات عن العضوية",
    "useCasesPage.fitness.benefit1": "حجز الصفوف ومعلومات الجدول",
    "useCasesPage.fitness.benefit2": "خطط العضويات والتجديدات",
    "useCasesPage.fitness.benefit3": "حجز المدرب الشخصي",
    "useCasesPage.fitness.benefit4": "نصائح التمارين والتغذية",
    "useCasesPage.fitness.example1": "حجز صف",
    "useCasesPage.fitness.example2": "العضوية",
    "useCasesPage.fitness.example3": "جلسة تدريب",
    "useCasesPage.fitness.example4": "أوقات المنشأة",

    // Legal Industry
    "useCasesPage.legal.name": "الخدمات القانونية",
    "useCasesPage.legal.description": "أتمتة الاستشارات الأولية وتحديثات حالة القضايا وطلبات المستندات لمكاتب المحاماة والإدارات القانونية.",
    "useCasesPage.legal.results": "استقبال منظم للعملاء وتحديثات روتينية عن حالة القضايا",
    "useCasesPage.legal.benefit1": "جدولة الاستشارات ونماذج الاستقبال",
    "useCasesPage.legal.benefit2": "تحديثات حالة القضية وطلبات المستندات",
    "useCasesPage.legal.benefit3": "الأسئلة الشائعة القانونية والمعلومات العامة",
    "useCasesPage.legal.benefit4": "استفسارات الفواتير ومعالجة المدفوعات",
    "useCasesPage.legal.example1": "حجز استشارة",
    "useCasesPage.legal.example2": "حالة القضية",
    "useCasesPage.legal.example3": "المستندات",
    "useCasesPage.legal.example4": "الفواتير",

    // HR & Recruitment Industry
    "useCasesPage.hr.name": "الموارد البشرية والتوظيف",
    "useCasesPage.hr.description": "تبسيط عمليات التوظيف وتأهيل الموظفين واستفسارات الموارد البشرية بأتمتة ذكية.",
    "useCasesPage.hr.results": "فرز أولي متسق وتوجيه أسئلة الموظفين",
    "useCasesPage.hr.benefit1": "فرز طلبات التوظيف وجدولة المقابلات",
    "useCasesPage.hr.benefit2": "تأهيل الموظفين والتدريب",
    "useCasesPage.hr.benefit3": "طلبات الإجازات وأسئلة السياسات",
    "useCasesPage.hr.benefit4": "التسجيل في المزايا واستفسارات الرواتب",
    "useCasesPage.hr.example1": "تقدم للوظيفة",
    "useCasesPage.hr.example2": "طلب إجازة",
    "useCasesPage.hr.example3": "معلومات المزايا",
    "useCasesPage.hr.example4": "الرواتب",

    // Logistics Industry
    "useCasesPage.logistics.name": "اللوجستيات والشحن",
    "useCasesPage.logistics.description": "أتمتة تتبع الشحنات وجدولة التوصيل واستفسارات العملاء لشركات اللوجستيات.",
    "useCasesPage.logistics.results": "تحديثات تتبع ذاتية الخدمة وتسهيل إعادة جدولة التسليم",
    "useCasesPage.logistics.benefit1": "تتبع الشحنات في الوقت الفعلي",
    "useCasesPage.logistics.benefit2": "جدولة وإعادة جدولة التوصيل",
    "useCasesPage.logistics.benefit3": "الأسعار وإنشاء عروض الأسعار",
    "useCasesPage.logistics.benefit4": "المطالبات وحل المشكلات",
    "useCasesPage.logistics.example1": "تتبع الطرد",
    "useCasesPage.logistics.example2": "احصل على عرض سعر",
    "useCasesPage.logistics.example3": "جدولة الاستلام",
    "useCasesPage.logistics.example4": "قدم مطالبة",

    // Government Industry
    "useCasesPage.government.name": "الحكومة والخدمات العامة",
    "useCasesPage.government.description": "إتاحة معلومات معتمدة وتوجيه الطلبات بالخدمة الذاتية خارج ساعات العمل.",
    "useCasesPage.government.results": "معلومات واضحة عن الخدمات وتوجيه منظم للطلبات",
    "useCasesPage.government.benefit1": "معلومات الخدمات وفحص الأهلية",
    "useCasesPage.government.benefit2": "تتبع حالة الطلبات",
    "useCasesPage.government.benefit3": "طلبات المستندات والتصاريح",
    "useCasesPage.government.benefit4": "الإعلانات العامة وتنبيهات الطوارئ",
    "useCasesPage.government.example1": "معلومات الخدمة",
    "useCasesPage.government.example2": "حالة الطلب",
    "useCasesPage.government.example3": "التصاريح",
    "useCasesPage.government.example4": "الشكاوى",

    // Events Industry
    "useCasesPage.events.name": "الفعاليات والمؤتمرات",
    "useCasesPage.events.description": "إدارة تسجيلات الفعاليات وتقديم دعم الحضور وأتمتة الاتصالات المتعلقة بالفعاليات.",
    "useCasesPage.events.results": "تسجيل أسهل ومعلومات متسقة للحضور",
    "useCasesPage.events.benefit1": "تسجيل الفعاليات وحجز التذاكر",
    "useCasesPage.events.benefit2": "الجدول ومعلومات المتحدثين",
    "useCasesPage.events.benefit3": "اتجاهات المكان واللوجستيات",
    "useCasesPage.events.benefit4": "جمع ملاحظات ما بعد الفعالية",
    "useCasesPage.events.example1": "التسجيل",
    "useCasesPage.events.example2": "الجدول",
    "useCasesPage.events.example3": "معلومات المكان",
    "useCasesPage.events.example4": "التواصل",

    // Telecom Industry
    "useCasesPage.telecom.name": "الاتصالات والمرافق",
    "useCasesPage.telecom.description": "التعامل مع استفسارات الفواتير وطلبات الخدمات والدعم الفني لشركات الاتصالات والمرافق.",
    "useCasesPage.telecom.results": "حلول أولية للمشكلات وتحويل أعطال الشبكة للموظفين",
    "useCasesPage.telecom.benefit1": "دفع الفواتير ومعلومات الاستخدام",
    "useCasesPage.telecom.benefit2": "تغييرات الباقات والترقيات",
    "useCasesPage.telecom.benefit3": "استكشاف الأخطاء الفنية وإصلاحها",
    "useCasesPage.telecom.benefit4": "إشعارات انقطاع الخدمة",
    "useCasesPage.telecom.example1": "دفع الفاتورة",
    "useCasesPage.telecom.example2": "فحص الاستخدام",
    "useCasesPage.telecom.example3": "الدعم الفني",
    "useCasesPage.telecom.example4": "ترقية الباقة",

    // Beauty Industry
    "useCasesPage.beauty.name": "الجمال والصالونات",
    "useCasesPage.beauty.description": "أتمتة حجز المواعيد واستفسارات الخدمات وتوصيات المنتجات لشركات التجميل.",
    "useCasesPage.beauty.results": "حجز وتذكير وإعادة جدولة أسهل للمواعيد",
    "useCasesPage.beauty.benefit1": "جدولة المواعيد والتذكيرات",
    "useCasesPage.beauty.benefit2": "قائمة الخدمات والأسعار",
    "useCasesPage.beauty.benefit3": "توصيات المنتجات وتوفرها",
    "useCasesPage.beauty.benefit4": "برنامج الولاء والعروض الترويجية",
    "useCasesPage.beauty.example1": "حجز موعد",
    "useCasesPage.beauty.example2": "الخدمات",
    "useCasesPage.beauty.example3": "المنتجات",
    "useCasesPage.beauty.example4": "العروض",

    // Media Industry
    "useCasesPage.media.name": "الإعلام والترفيه",
    "useCasesPage.media.description": "التفاعل مع الجمهور بمحتوى تفاعلي وإدارة الاشتراكات ودعم فوري لشركات الإعلام.",
    "useCasesPage.media.results": "دعم متسق للاشتراكات واكتشاف المحتوى",
    "useCasesPage.media.benefit1": "إدارة الاشتراكات والفواتير",
    "useCasesPage.media.benefit2": "توصيات المحتوى",
    "useCasesPage.media.benefit3": "معلومات الفعاليات والعروض",
    "useCasesPage.media.benefit4": "الدعم الفني واستكشاف الأخطاء",
    "useCasesPage.media.example1": "الاشتراك",
    "useCasesPage.media.example2": "التوصيات",
    "useCasesPage.media.example3": "أوقات العرض",
    "useCasesPage.media.example4": "الدعم",

    // Nonprofit Industry
    "useCasesPage.nonprofit.name": "المنظمات غير الربحية",
    "useCasesPage.nonprofit.description": "التفاعل مع المتبرعين وإدارة المتطوعين وتقديم معلومات عن رسالتك بتواصل مدعوم بالذكاء الاصطناعي.",
    "useCasesPage.nonprofit.results": "تنظيم أسئلة المتبرعين وتنسيق المتطوعين",
    "useCasesPage.nonprofit.benefit1": "معالجة التبرعات والإيصالات",
    "useCasesPage.nonprofit.benefit2": "تسجيل المتطوعين وجدولتهم",
    "useCasesPage.nonprofit.benefit3": "معلومات البرامج وتقارير الأثر",
    "useCasesPage.nonprofit.benefit4": "الترويج للفعاليات والتسجيل",
    "useCasesPage.nonprofit.example1": "تبرع",
    "useCasesPage.nonprofit.example2": "تطوع",
    "useCasesPage.nonprofit.example3": "البرامج",
    "useCasesPage.nonprofit.example4": "الفعاليات",

    // Gaming Industry
    "useCasesPage.gaming.name": "الألعاب والرياضات الإلكترونية",
    "useCasesPage.gaming.description": "تقديم دعم اللاعبين ومعلومات البطولات وتفاعل المجتمع لشركات الألعاب.",
    "useCasesPage.gaming.results": "توجيه أسرع لأسئلة الحسابات والبطولات واللاعبين",
    "useCasesPage.gaming.benefit1": "دعم الحساب والاسترداد",
    "useCasesPage.gaming.benefit2": "تسجيل البطولات والجداول",
    "useCasesPage.gaming.benefit3": "دعم المشتريات داخل اللعبة",
    "useCasesPage.gaming.benefit4": "أدلة ونصائح اللعبة",
    "useCasesPage.gaming.example1": "مساعدة الحساب",
    "useCasesPage.gaming.example2": "البطولات",
    "useCasesPage.gaming.example3": "المشتريات",
    "useCasesPage.gaming.example4": "نصائح اللعبة",

    // Features Page
    "featuresPage.badge": "مميزات المنصة",
    "featuresPage.title": "كل ما تحتاجه للنجاح",
    "featuresPage.subtitle": "سكاي لايت شات يوفر لك جميع الأدوات التي تحتاجها لأتمتة التواصل مع العملاء، وزيادة التفاعل، وتنمية عملك باستخدام روبوتات الدردشة الذكية.",

    // AI Features Category
    "featuresPage.ai.title": "الذكاء الاصطناعي",
    "featuresPage.ai.description": "استفد من قوة الذكاء الاصطناعي لفهم عملائك والرد عليهم بشكل طبيعي.",
    "featuresPage.ai.ai1.title": "فهم اللغة الطبيعية",
    "featuresPage.ai.ai1.description": "يفهم الذكاء الاصطناعي السياق والنية والمشاعر بلغات ولهجات متعددة.",
    "featuresPage.ai.ai2.title": "ردود ذكية",
    "featuresPage.ai.ai2.description": "إنشاء ردود ذكية وسياقية تبدو بشرية ومخصصة.",
    "featuresPage.ai.ai3.title": "التعلم والتحسين",
    "featuresPage.ai.ai3.description": "يتعلم الذكاء الاصطناعي باستمرار من التفاعلات لتقديم ردود أفضل مع مرور الوقت.",
    "featuresPage.ai.ai4.title": "دعم الرسائل الصوتية",
    "featuresPage.ai.ai4.description": "فهم والرد على الرسائل الصوتية باستخدام تقنية التعرف على الكلام بالذكاء الاصطناعي.",

    "featuresPage.ai.ai5.title": "الفهم متعدد الوسائط للرؤية والصور",
    "featuresPage.ai.ai5.description": "وكلاء الذكاء الاصطناعي يمكنهم رؤية وتوصيف واستخراج النصوص من الصور والإيصالات والوثائق (OCR).",
    "featuresPage.ai.ai6.title": "مساعد الكاتب الذكي للموظفين",
    "featuresPage.ai.ai6.description": "اقتراح ردود ذكية بنقرة واحدة وإعادة صياغة المسودات بنبرات مختلفة داخل صندوق الوارد الموحد.",

    // Channels Category
    "featuresPage.channels.title": "دعم متعدد القنوات",
    "featuresPage.channels.description": "تواصل مع عملائك على جميع منصات المراسلة المفضلة لديهم من صندوق وارد موحد.",
    "featuresPage.channels.channels1.title": "واتساب للأعمال",
    "featuresPage.channels.channels1.description": "تكامل كامل مع واتساب للأعمال مع القوالب والرسائل الجماعية.",
    "featuresPage.channels.channels2.title": "إنستغرام",
    "featuresPage.channels.channels2.description": "أتمتة الرسائل المباشرة والتعليقات على إنستغرام.",
    "featuresPage.channels.channels3.title": "تيليجرام",
    "featuresPage.channels.channels3.description": "أتمتة المحادثات والدعم على تيليجرام مع تكامل البوتات.",
    "featuresPage.channels.channels4.title": "لينكد إن",
    "featuresPage.channels.channels4.description": "صندوق لينكد إن موحد، حملات تواصل، بحث عن عملاء، ونشر وظائف Recruiter مع فحص المرشحين بالذكاء الاصطناعي.",
    "featuresPage.channels.channels5.title": "ويدجت الدردشة",
    "featuresPage.channels.channels5.description": "تضمين ويدجت دردشة جميل على موقعك في دقائق.",
    "featuresPage.channels.channels6.title": "نظام هلا (Halla) للاتصالات الصوتية",
    "featuresPage.channels.channels6.description": "نظام صوتي مخصص بالذكاء الاصطناعي (halla.skylightchat.com) لإجراء واستقبال المكالمات، والاتصال الهاتفي عبر الإنترنت (VoIP)، وأتمتة استعادة المكالمات الفائتة عبر واتساب.",

    "featuresPage.channels.channels7.title": "التوظيف والفلترة الذكية عبر لينكدإن",
    "featuresPage.channels.channels7.description": "إنشاء ونشر قوائم الوظائف على لينكدإن ومزامنة المتقدمين تلقائياً إلى لوحة التحكم مع الفلترة الذكية وتنزيل السير الذاتية.",
    "featuresPage.channels.channels8.title": "حملات التواصل الخارجي المتسلسلة ووضع التسخين",
    "featuresPage.channels.channels8.description": "تشغيل حملات تواصل مخصصة متعددة المراحل مع وضع التسخين التلقائي للأرقام الجديدة لتجنب الحظر.",

    // Automation Category
    "featuresPage.automation.title": "أتمتة قوية",
    "featuresPage.automation.description": "بناء سير عمل معقدة بدون برمجة لأتمتة عمليات عملك.",
    "featuresPage.automation.automation2.title": "المحفزات والإجراءات",
    "featuresPage.automation.automation2.description": "إعداد ردود آلية بناءً على الكلمات المفتاحية أو الأحداث أو سلوك المستخدم.",
    "featuresPage.automation.automation3.title": "الرسائل المجدولة",
    "featuresPage.automation.automation3.description": "إرسال متابعات وتذكيرات معتمدة في أوقات مضبوطة وقواعد منع.",
    "featuresPage.automation.automation4.title": "التوجيه الذكي",
    "featuresPage.automation.automation4.description": "توجيه المحادثات إلى عضو الفريق المناسب بناءً على قواعد تحددها.",

    "featuresPage.automation.automation5.title": "الوكلاء المتخصصون بالذكاء الاصطناعي",
    "featuresPage.automation.automation5.description": "نشر وكلاء فرعيين متخصصين (حجوزات، طلبات، علاقات عملاء متقدمة) لتنفيذ إجراءات حقيقية في النظام أثناء الدردشة.",
    "featuresPage.automation.automation6.title": "منظومة الموافقات البشرية",
    "featuresPage.automation.automation6.description": "إيقاف العمليات الحساسة (مثل النشر أو الإجراءات المكلفة) وتوليد طلب اعتماد ينتظر موافقة مستخدم بشري.",

    // Analytics Category
    "featuresPage.analytics.title": "التحليلات والرؤى",
    "featuresPage.analytics.description": "تتبع الأداء، وافهم عملائك، واتخذ قرارات مبنية على البيانات.",
    "featuresPage.analytics.analytics1.title": "تحليلات المحادثات",
    "featuresPage.analytics.analytics1.description": "مراقبة أوقات الاستجابة ومعدلات الحل ورضا العملاء.",
    "featuresPage.analytics.analytics2.title": "أداء الذكاء الاصطناعي",
    "featuresPage.analytics.analytics2.description": "تتبع دقة الذكاء الاصطناعي والمحادثات المعالجة ومجالات التحسين.",
    "featuresPage.analytics.analytics4.title": "تقارير مخصصة",
    "featuresPage.analytics.analytics4.description": "تصدير البيانات وإنشاء تقارير مخصصة للتحليل العميق.",

    "featuresPage.analytics.analytics5.title": "التدريب اليومي التلقائي للفريق",
    "featuresPage.analytics.analytics5.description": "تحليل محادثات ومكالمات الموظفين وتوليد نصائح تدريبية مخصصة وبطاقات أداء يومية بالذكاء الاصطناعي.",
    "featuresPage.analytics.analytics6.title": "تحليل المشاعر وكشف النوايا الفوري",
    "featuresPage.analytics.analytics6.description": "تحليل مشاعر العملاء وكشف نواياهم (حجز، شراء، شكوى) تلقائياً لتفعيل مسارات العمل والتصعيد الصحيحة.",

    // Knowledge Category
    "featuresPage.knowledge.title": "إدارة المعرفة",
    "featuresPage.knowledge.description": "بناء قاعدة معرفة ذكية تدعم ردود الذكاء الاصطناعي الدقيقة.",
    "featuresPage.knowledge.knowledge1.title": "سحب محتوى الموقع",
    "featuresPage.knowledge.knowledge1.description": "استيراد المحتوى تلقائياً من موقعك لتدريب الذكاء الاصطناعي.",
    "featuresPage.knowledge.knowledge2.title": "رفع المستندات",
    "featuresPage.knowledge.knowledge2.description": "رفع ملفات PDF والمستندات لتوسيع قاعدة المعرفة.",
    "featuresPage.knowledge.knowledge3.title": "منشئ الأسئلة الشائعة",
    "featuresPage.knowledge.knowledge3.description": "إنشاء وتنظيم الأسئلة المتكررة مع إجاباتها.",
    "featuresPage.knowledge.knowledge4.title": "كتالوج المنتجات",
    "featuresPage.knowledge.knowledge4.description": "استيراد منتجاتك للحصول على معلومات دقيقة عن الأسعار والتوفر.",

    "featuresPage.knowledge.knowledge5.title": "الذاكرة طويلة المدى ومحرك السياق",
    "featuresPage.knowledge.knowledge5.description": "استخراج تفضيلات العملاء وميزانياتهم واعتراضاتهم تلقائياً وحفظها كملاحظات منظمة لتحديث الشرائح ديناميكياً.",

    // Team Category
    "featuresPage.team.title": "تعاون الفريق",
    "featuresPage.team.description": "اعملوا معاً بسلاسة مع ميزات تعاون قوية.",
    "featuresPage.team.team1.title": "صندوق وارد موحد",
    "featuresPage.team.team1.description": "جميع المحادثات من جميع القنوات في صندوق وارد واحد سهل الاستخدام.",
    "featuresPage.team.team2.title": "التعيين والعلامات",
    "featuresPage.team.team2.description": "تنظيم المحادثات بالعلامات وتعيينها لأعضاء الفريق.",
    "featuresPage.team.team3.title": "الملاحظات الداخلية",
    "featuresPage.team.team3.description": "إضافة ملاحظات خاصة للمحادثات للتواصل بين الفريق.",
    "featuresPage.team.team4.title": "صلاحيات الأدوار",
    "featuresPage.team.team4.description": "التحكم في الوصول مع أدوار وصلاحيات قابلة للتخصيص.",

    "featuresPage.team.team5.title": "برنامج الشركاء والموزعين بنظام العلامة البيضاء",
    "featuresPage.team.team5.description": "لوحة تحكم كاملة للشركاء والموزعين لإعادة بيع المنصة تحت شعارهم الخاص، مع إنشاء حسابات فرعية وتخصيص خطط الأسعار والحدود.",

    // Security
    "featuresPage.security.title": "الأمان والامتثال",
    "featuresPage.security.description": "حماية على مستوى المؤسسات لبياناتك ومحادثاتك.",
    "featuresPage.security.security1.title": "تشفير أثناء النقل والتخزين",
    "featuresPage.security.security1.description": "جميع الرسائل والبيانات مشفّرة أثناء النقل وفي حالة التخزين باستخدام AES-256.",
    "featuresPage.security.security2.title": "ضوابط الخصوصية",
    "featuresPage.security.security2.description": "ضوابط مصممة لدعم برامج العملاء لحماية البيانات والخصوصية.",
    "featuresPage.security.security3.title": "المصادقة الثنائية",
    "featuresPage.security.security3.description": "حماية حسابات الفريق بالمصادقة الثنائية وتسجيل الدخول الموحّد وقوائم IP المسموح بها.",
    "featuresPage.security.security4.title": "سجلات التدقيق وإقامة البيانات",
    "featuresPage.security.security4.description": "سجل تدقيق كامل لجميع الإجراءات مع خيارات إقامة البيانات في المنطقة التي تفضلها.",

    // Highlights
    "featuresPage.highlights.title": "لماذا تختار سكاي لايت شات؟",
    "featuresPage.highlights.uptime": "توفر الخدمة",
    "featuresPage.highlights.support": "دعم الذكاء الاصطناعي متاح",
    "featuresPage.highlights.channels": "قنوات المراسلة",
    "featuresPage.highlights.channelsPresent": "واتساب · إنستغرام · تيليجرام · لينكد إن · الويب",

    // CTA
    "featuresPage.api.title": "واجهة برمجية للمطورين",
    "featuresPage.api.description": "وصول برمجي كامل لكل ميزات سكاي لايت شات. ابنِ تكاملات مخصصة، أتمت سير العمل، وربط أنظمتك الخاصة.",
    "featuresPage.api.api2.title": "عزل تام للبيانات",
    "featuresPage.api.api2.description": "كل نقطة وصول مقيّدة بمفتاح API الخاص بك. الوصول لبيانات حساب آخر مستحيل هيكلياً.",
    "featuresPage.api.api3.title": "واجهة تحويل النص لكلام",
    "featuresPage.api.api3.description": "استنسخ صوتاً من تسجيل صوتي وولّد كلاماً عربياً أو إنجليزياً طبيعياً من أي نص — كل ذلك عبر API.",
    "featuresPage.api.api4.title": "توثيق شامل للمطورين",
    "featuresPage.api.api4.description": "توثيق كامل على docs.skylightchat.com مع أمثلة الطلبات والردود وأكواد نموذجية وأدلة Webhook.",

    "featuresPage.cta.title": "جاهز لتحويل تواصلك؟",
    "featuresPage.cta.subtitle": "انضم لآلاف الشركات التي تستخدم سكاي لايت شات لأتمتة دعم العملاء وزيادة التفاعل.",
    "featuresPage.cta.button": "ابدأ التجربة المجانية",

    // ── Status page ──────────────────────────────────────────────────────────
    "status.badge.label": "الحالة المباشرة",
    "status.title": "حالة النظام",
    "status.subtitle": "صحة الخدمات وبيانات التشغيل المستمر لجميع خدمات سكاي لايت شات بشكل فوري.",
    "status.checking": "جارٍ فحص الأنظمة…",
    "status.lastChecked": "آخر فحص",
    "status.refresh": "تحديث",
    "status.noIssues": "لسنا على علم بأي مشاكل تؤثر على أنظمتنا حالياً.",
    "status.systemStatus": "حالة النظام",
    "status.last90": "آخر 90 يوماً",
    "status.incidentHistory": "سجل الأعطال",
    "status.resolved": "تم الحل",
    "status.noMoreIncidents": "لا توجد أعطال أخرى مسجّلة.",
    "status.overall.operational": "جميع الأنظمة تعمل بشكل طبيعي",
    "status.overall.degraded": "تعطّل جزئي في الخدمة",
    "status.overall.outage": "تم رصد انقطاع في الخدمة",
    "status.overall.maintenance": "صيانة مجدولة",
    "status.overall.unknown": "جارٍ الفحص…",
    "status.badge.operational": "يعمل بشكل طبيعي",
    "status.badge.degraded": "أداء متدنٍّ",
    "status.badge.outage": "انقطاع",
    "status.badge.maintenance": "صيانة",
    "status.badge.unknown": "جارٍ الفحص…",
    "status.service.api": "واجهة REST البرمجية",
    "status.service.website": "لوحة التحكم والموقع",
    "status.cta.title": "احصل على إشعارات بالأعطال",
    "status.cta.sub": "اشترك في تحديثات الحالة وكن أول من يعلم عند وقوع أي مشكلة تؤثر على خدمتك.",
    "status.cta.btn": "تواصل معنا للاشتراك",
    "status.incidentStatus.investigating": "تحقيق جارٍ",
    "status.incidentStatus.identified":    "تم التحديد",
    "status.incidentStatus.monitoring":    "جارٍ المراقبة",
    "status.incidentStatus.resolved":      "تم الحل",

    // Header
    "header.login": "تسجيل الدخول",
    "header.signup": "سجل الان",

    // Footer
    "footer.cta.title": "كل عملك في مكان واحد",
    "footer.cta.placeholder": "أدخل بريدك الإلكتروني",
    "footer.cta.button": "ابدأ الآن",
    "footer.primary.title": "الصفحات الرئيسية",
    "footer.primary.home": "الرئيسية",
    "footer.primary.features": "المميزات",
    "footer.primary.pricing": "الأسعار",
    "footer.primary.useCases": "حالات الاستخدام",
    "footer.primary.contact": "التواصل",
    "footer.company.title": "الشركة",
    "footer.company.terms": "الشروط والأحكام",
    "footer.company.privacy": "سياسة الخصوصية",
    "footer.utility.title": "صفحات مساعدة",
    "footer.utility.faq": "الأسئلة الشائعة",
    "footer.utility.signup": "التسجيل",
    "footer.utility.signin": "تسجيل الدخول",
    "footer.utility.partnersPanel": "لوحة الشركاء",
    "footer.utility.reset": "إعادة تعيين كلمة المرور",
    "footer.socials.title": "وسائل التواصل",
    "footer.socials.instagram": "إنستغرام",
    "footer.socials.whatsapp": "واتساب",
    "footer.socials.tiktok": "تيك توك",
    "footer.socials.linkedin": "لينكد إن",
    "footer.socials.youtube": "يوتيوب",
    "footer.contact.title": "تواصل معنا",
    "footer.contact.address": "7996 شارع عبدالرحمن بن عوف - الدور الأول، حي المنار 32274، الدمام",
    "footer.contact.email": "Info@skylightchat.com",
    "footer.copyright": "© {year} جميع الحقوق محفوظة لـ",
    "footer.copyright.agency": "شركة سكاي لايت",
    "footer.trustpilot.title": "مراجعات العملاء على Trustpilot",

    // Footer new columns
    "footer.product.title": "المنتج",
    "footer.product.pricing": "الأسعار",
    "footer.product.waChecker": "مدقق واتساب المجاني",
    "footer.product.integrations": "التكاملات",
    "footer.product.changelog": "سجل التحديثات",
    "footer.resources.title": "الموارد",
    "footer.resources.hub": "مركز الموارد",
    "footer.resources.partners": "برنامج الشركاء",
    "footer.resources.usecases": "برنامج الشركاء",
    "footer.resources.faq": "الأسئلة الشائعة",
    "footer.resources.contact": "تواصل مع المبيعات",
    "footer.resources.developers": "للمطورين",
    "footer.resources.status": "حالة النظام",
    "footer.company.security": "الأمان والامتثال",

    // Security page
    "security.badge": "أمان على مستوى المؤسسات",
    "security.heroTitle1": "ضوابط الأمان",
    "security.heroTitle2": "التي يمكنك مراجعتها",
    "security.heroSubtitle": "راجع التشفير والوصول وخيارات الإقامة والسجلات والالتزامات التعاقدية للباقة والإعداد المختارين.",
    "security.stat1": "التشفير",
    "security.stat2": "مراقبة التوفر",
    "security.stat3": "أثناء النقل",
    "security.stat4": "المراقبة",
    "security.cert.gdpr.title": "ضوابط الخصوصية",
    "security.cert.gdpr.desc": "تدفقات للوصول والحذف يمكن أن تدعم برامج خصوصية العملاء.",
    "security.cert.encryption.title": "ضوابط التشفير",
    "security.cert.encryption.desc": "تشفير أثناء النقل والتخزين وفق ما هو موثق لإعداد الخدمة المختار.",
    "security.cert.dataResidency.title": "إقامة البيانات",
    "security.cert.dataResidency.desc": "تعتمد خيارات الاستضافة المتاحة على الباقة وإعداد الخدمة المختارين.",
    "security.cert.pdpl.title": "ضوابط موجهة لنظام PDPL",
    "security.cert.pdpl.desc": "ضوابط إعداد وحوكمة مصممة لدعم برامج العملاء المتعلقة بنظام PDPL.",
    "security.enc.title": "تشفير أثناء النقل والتخزين",
    "security.enc.desc": "تُحمى بيانات الخدمة بالتشفير أثناء النقل والتخزين مع ضوابط الوصول وسجلات التدقيق.",
    "security.pillars.title": "الأمان في كل طبقة",
    "security.pillars.subtitle": "اطلب الضوابط المتاحة في باقتك: البنية والوصول والسجلات وممارسات الاختبار.",
    "security.pillar.infra.title": "أمان البنية التحتية",
    "security.pillar.infra.desc": "استضافة سحابية مع عزل شبكة وخيارات مراقبة تعتمد على البنية المختارة.",
    "security.pillar.infra.infraSpec1": "فصل المستأجرين حيث تدعمه البنية",
    "security.pillar.infra.infraSpec2": "ضوابط حماية الشبكة حيث تُفعّل",
    "security.pillar.infra.infraSpec3": "فحص الثغرات وفق إعداد الخدمة",
    "security.pillar.access.title": "التحكم في الوصول",
    "security.pillar.access.desc": "صلاحيات دقيقة تضمن أن يصل كل عضو فريق فقط لما يحتاجه.",
    "security.pillar.access.accessSpec1": "التحكم في الوصول المستند إلى الأدوار (RBAC)",
    "security.pillar.access.accessSpec2": "المصادقة الثنائية (2FA)",
    "security.pillar.access.accessSpec3": "تسجيل دخول موحّد وقوائم IP عند تضمينها في الباقة",
    "security.pillar.audit.title": "التدقيق والمراقبة",
    "security.pillar.audit.desc": "خيارات سجلات إدارية والوصول للإجراءات التي يدعمها إعدادك.",
    "security.pillar.audit.auditSpec1": "سجلات تدقيق إدارية للإجراءات المدعومة",
    "security.pillar.audit.auditSpec2": "خيارات المراقبة والتنبيه حيث تُفعّل",
    "security.pillar.audit.auditSpec3": "خيارات تصدير السجلات لمراجعة العميل عند التوفر",
    "security.pillar.pentest.title": "اختبار الاختراق",
    "security.pillar.pentest.desc": "اطلب ممارسات الاختبار الحالية وأي ملخصات تقييم من طرف ثالث متاحة لتقييمك.",
    "security.pillar.pentest.pentestSpec1": "اسأل عن جدول اختبار الطرف الثالث الحالي",
    "security.pillar.pentest.pentestSpec2": "جهة إفصاح مسؤول لتقارير الأمان",
    "security.pillar.pentest.pentestSpec3": "ممارسات الفحص الآلي حيث تُفعّل",
    "security.cta.title": "لديك أسئلة حول الأمان؟",
    "security.cta.subtitle": "اطلب وثائق الأمان الحالية والضوابط المتاحة بموجب عقدك.",
    "security.cta.contact": "تحدث مع فريق الأمان",
    "security.cta.privacy": "اقرأ سياسة الخصوصية",

    // Integrations page
    "integrations.badge": "التكاملات",
    "integrations.heroTitle1": "اربط",
    "integrations.heroTitle2": "كل شيء",
    "integrations.heroSubtitle": "اربط مسارات المراسلة والتجارة وCRM وAPI المدعومة بعد تأكيد الباقة والمزود والتوافر الإقليمي.",
    "integrations.cat.messaging.title": "قنوات المراسلة",
    "integrations.cat.messaging.desc": "واتساب وإنستغرام وتيليجرام ولينكد إن ودردشة الويب في صندوق واحد",
    "integrations.channel.whatsapp": "واتساب",
    "integrations.channel.instagram": "إنستغرام",
    "integrations.channel.telegram": "تيليجرام",
    "integrations.channel.linkedin": "لينكد إن",
    "integrations.channel.web_widget": "دردشة الويب",
    "integrations.channel.salla": "سلة",
    "integrations.automation.n8n": "n8n",
    "integrations.cat.ecommerce.title": "منصات التجارة الإلكترونية",
    "integrations.cat.ecommerce.desc": "مزامنة الطلبات والمنتجات والعملاء",
    "integrations.cat.crm.title": "CRM والمبيعات",
    "integrations.cat.crm.desc": "إبقاء خط أنابيب مبيعاتك متزامناً",
    "integrations.cat.automation.title": "الأتمتة وسير العمل",
    "integrations.cat.automation.desc": "اربط n8n وواجهة REST API وWebhooks لأتمتة منصتك",
    "integrations.cat.automation.api": "واجهة REST API",
    "integrations.cat.automation.webhooks": "Webhooks",
    "integrations.cat.analytics.title": "التحليلات والتتبع",
    "integrations.cat.analytics.desc": "خيارات لتتبع الإحالات والتحويلات",
    "integrations.cat.ai.title": "الذكاء الاصطناعي والبنية التحتية",
    "integrations.cat.ai.desc": "بنية قابلة لإعداد نماذج الذكاء الاصطناعي",
    "integrations.api.title": "واجهة REST API مفتوحة",
    "integrations.api.desc": "ابنِ أي تكامل مخصص باستخدام واجهة REST API الموثقة بالكامل. أرسل واستقبل الرسائل، وأدِر جهات الاتصال، وشغّل عمليات الأتمتة، وصِل إلى جميع بيانات المنصة برمجياً.",
    "integrations.api.rest": "واجهة RESTful API مع توثيق كامل",
    "integrations.api.webhooks": "Webhooks فورية لجميع الأحداث",
    "integrations.api.realtime": "دعم WebSocket للتحديثات المباشرة",
    "integrations.api.sdks": "SDKs لـ Node.js وPython وPHP",
    "integrations.cta.title": "لا ترى أداتك؟",
    "integrations.cta.subtitle": "نضيف تكاملات جديدة باستمرار. تواصل معنا وسنبنيه لك.",
    "integrations.cta.button": "طلب تكامل",

    // Changelog page
    "changelog.badge": "تحديثات المنتج",
    "changelog.heroTitle1": "ما",
    "changelog.heroTitle2": "الجديد",
    "changelog.heroSubtitle": "نقدم تحسينات كل أسبوع. إليك ما كنا نبنيه.",
    "changelog.v280.title": "وكيل ذكاء اصطناعي v2 وتوجيه متعدد النماذج",
    "changelog.v280.v280i1": "منشئ وكيل ذكاء اصطناعي جديد مع تدفقات النوايا بالسحب والإفلات",
    "changelog.v280.v280i2": "توجيه متعدد النماذج: اختيار أسرع أو أرخص نموذج تلقائياً لكل طلب",
    "changelog.v280.v280i3": "تكامل Groq للحصول على ردود ذكاء اصطناعي أقل من 200 مللي ثانية",
    "changelog.v280.v280i4": "تحسينات تسليم المحادثة مع الحفاظ على السياق",
    "changelog.v272.title": "تحسينات الأداء والاستقرار",
    "changelog.v272.v272i1": "تقليل وقت تحميل لوحة التحكم بنسبة 40% من خلال تحسين الاستعلامات",
    "changelog.v272.v272i2": "تحسين موثوقية Webhook في واتساب تحت الحمل العالي",
    "changelog.v272.v272i3": "إصلاح مشكلات عرض RTL العربي في عرض المحادثة",
    "changelog.v270.title": "قاعدة المعرفة 2.0 وكتالوج المنتجات",
    "changelog.v270.v270i1": "قاعدة معرفة معاد تصميمها مع بحث دلالي مدعوم بالتضمينات",
    "changelog.v270.v270i2": "دعم كتالوج المنتجات لتوصيات الذكاء الاصطناعي في التجارة الإلكترونية",
    "changelog.v270.v270i3": "زحف المواقع مع جدولة إعادة الزحف التلقائية",
    "changelog.v270.v270i4": "معالجة المستندات: دعم PDF وDOCX وXLSX",
    "changelog.v265.title": "إصلاحات الأخطاء وتصحيحات الأمان",
    "changelog.v265.v265i1": "معالجة ثغرة XSS في أداة الدردشة الإلكترونية (إفصاح مسؤول)",
    "changelog.v265.v265i2": "إصلاح حالة حافة انتهاء الجلسة لمستخدمي SSO للمؤسسات",
    "changelog.v260.title": "وحدة الحجز والجدولة",
    "changelog.v260.v260i1": "حجز المواعيد الأصلي مع مزامنة التقويم",
    "changelog.v260.v260i2": "أوضاع الحجز المستندة إلى الموارد والسعة",
    "changelog.v260.v260i3": "تذكيرات آلية عبر واتساب قبل المواعيد",
    "changelog.v253.title": "إعادة تصميم لوحة التحليلات",
    "changelog.v253.v253i1": "تحليلات قمع المحادثة الجديدة مع رؤى نقاط التخلي",
    "changelog.v253.v253i2": "بطاقات أداء الوكيل مع تتبع وقت الاستجابة",
    "changelog.v253.v253i3": "تصدير التقارير إلى CSV/PDF مع تسليم البريد الإلكتروني المجدول",
    "changelog.subscribe.title": "ابقَ على اطلاع",
    "changelog.subscribe.desc": "احصل على إشعار عندما نقدم شيئاً جديداً.",
    "changelog.subscribe.placeholder": "بريدك@الإلكتروني.com",
    "changelog.subscribe.button": "أخبرني",

    // Changelog v2 — real releases (AR)
    "cl.badge": "سجل التحديثات",
    "cl.heroLine1": "نبني بشفافية.",
    "cl.heroLine2": "نحدث كل أسبوع.",
    "cl.heroSub": "كل ميزة، كل إصلاح، كل تدقيق أمني — موثّق هنا. هذا هو التاريخ الكامل لما بنيناه.",
    "cl.section.recent": "الإصدارات الأخيرة — آخر 3 أشهر",
    "cl.section.past": "السنة الماضية — كيف وصلنا إلى هنا",
    "cl.type.launch": "إطلاق المنصة",
    "cl.type.major": "إصدار جديد",
    "cl.type.improvement": "تحسين",
    "cl.type.security": "أمان",
    "cl.type.fix": "إصلاح خطأ",

    "cl.v26.title": "حملات التواصل وسكاي لايت توك — ملاحظات صوتية",
    "cl.v26.i1": "حملات التواصل: تشغيل حملات رسائل جماعية للشرائح مع الجدولة والقوالب والتخصيص",
    "cl.v26.i2": "سكاي لايت توك: وكلاء الذكاء الاصطناعي يرسلون الآن ملاحظات صوتية — ردود صوتية طبيعية بالعربية للعملاء",
    "cl.v26.i3": "تتبع إرسال الحملات وتحليلات التسليم والاستهداف المعتمد على الشرائح من القوائم والوسوم",
    "cl.v26.i4": "الملاحظات الصوتية متاحة على واتساب والدردشة المباشرة — الـ AI يرد بصوت مستنسخ لملمسة إنسانية",

    "cl.v25.title": "تدقيق أمني — يناير 2026",
    "cl.v25.i1": "مراجعة أمنية تبعتها معالجة للملاحظات وتعزيزات إضافية للمنصة",
    "cl.v25.i2": "إفصاح مسؤول: ثغرة XSS في أداة الدردشة الإلكترونية أُبلغ عنها خارجياً وتم تصحيحها في نفس اليوم",
    "cl.v25.i3": "تقوية الجلسات: دوران أكثر صرامة للرموز المميزة، وتطبيق مهلة الخمول، وحدود الجلسات المتزامنة لجميع الحسابات",

    "cl.v24.title": "واتساب الشخصي عبر QR + محرك السياق الذكي",
    "cl.v24.i1": "ربط رقم واتساب شخصي عبر مسح رمز QR — دون الحاجة لأي حساب إضافي أو موافقة مسبقة",
    "cl.v24.i2": "أرقام واتساب الشخصية تظهر الآن جنباً إلى جنب مع قنواتك الحالية في صندوق الوارد الموحّد",
    "cl.v24.i3": "وكيل الذكاء الاصطناعي يتلقى الآن سياق التاريخ والوقت الحي — يجيب بدقة على أسئلة الجدولة ويشير إلى 'اليوم' بصحة",
    "cl.v24.i4": "الوضع الداكن الكامل مُشحن عبر جميع واجهات لوحة التحكم إثر تدقيق إمكانية الوصول",

    "cl.v23.title": "تحسينات صندوق الوارد الموحّد وتجزئة جهات الاتصال",
    "cl.v23.i1": "تكامل Telegram في صندوق الوارد الموحّد — جهات الاتصال والمحادثات ودعم وكيل الذكاء الاصطناعي متاحة بالكامل",
    "cl.v23.i2": "رد الذكاء الاصطناعي وإعادة الكتابة بالذكاء الاصطناعي متاحان لكل وكيل بشري مباشرة داخل عرض المحادثة",
    "cl.v23.i3": "مكتبة وسائط مشتركة: جميع الملفات المرسلة والمستقبلة عبر القنوات مفهرسة وقابلة للبحث حسب جهة الاتصال",

    "cl.v22.title": "قاعدة المعرفة 2.0 — رؤية، صوت وموقع إلكتروني",
    "cl.v22.i1": "زحف المواقع: وجّه قاعدة المعرفة لأي رابط وستقوم بالكشط والتقسيم والتضمين تلقائياً مع إعادة زحف مجدولة",
    "cl.v22.i2": "نسخ الملاحظات الصوتية: سجّل ملاحظة صوتية ← تُنسخ إلى نص ← تُفهرس في قاعدة المعرفة",
    "cl.v22.i3": "معالجة الرؤية: ارفع صوراً أو مستندات ممسوحة ← يُستخرج النص ويُضاف إلى قاعدة المعرفة",
    "cl.v22.i4": "وضع كتالوج المنتجات: اربط قائمة منتجات بقاعدة المعرفة حتى يتمكن الذكاء الاصطناعي من تقديم توصيات منتجات محددة في الدردشة",
    "cl.v22.i5": "إعادة المعالجة الجماعية: إعادة تضمين جميع المستندات بنقرة واحدة عند ترقية النموذج الأساسي",

    "cl.v20.title": "نظام الحجز والمواعيد بالذكاء الاصطناعي",
    "cl.v20.i1": "محرك حجز أصلي: حدّد أنواع الخدمات، وعيّن الموارد (موظفين، غرف، معدات)، وامتلك جداول توافر",
    "cl.v20.i2": "إدارة التواريخ المحجوبة وواجهة API للمواعيد المتاحة الفورية للتكاملات الخارجية",
    "cl.v20.i3": "وكيل حجز بالذكاء الاصطناعي: يمكن للذكاء الاصطناعي التحقق من التوافر وتأكيد المواعيد بالكامل داخل محادثة واتساب — دون إعادة توجيه",
    "cl.v20.i4": "رسائل تأكيد الحجز والتذكيرات ترسل تلقائياً عبر واتساب",

    "cl.v18.title": "أداة الدردشة الإلكترونية ورسائل Instagram",
    "cl.v18.i1": "أداة دردشة إلكترونية قابلة للتضمين في أي موقع — وسم نصي واحد، بدون إعداد، وتاريخ المحادثة الكامل مزامن مع صندوق الوارد",
    "cl.v18.i2": "رسائل Instagram Direct مدمجة في صندوق الوارد الموحّد جنباً إلى جنب مع واتساب",
    "cl.v18.i3": "ردود بوت Instagram، ردود تلقائية مخصصة، ودعم وكيل الذكاء الاصطناعي للرسائل المباشرة",
    "cl.v18.i4": "تحليلات جلسة الأداة: تتبع محادثات الزوار ومعدل الحل والتخلي لكل صفحة",

    "cl.v16.title": "وكيل الذكاء الاصطناعي — الذاكرة السياقية وكشف النوايا",
    "cl.v16.i1": "منشئ وكيل الذكاء الاصطناعي: أنشئ وكلاء مسمّين بتعليمات نظام مخصصة ونبرة ونطاق — عيّن لكل قناة",
    "cl.v16.i2": "محرك الذاكرة السياقية: الوكيل يتذكر تاريخ المحادثة الكامل ويحل الأسئلة التتابعية دون تكرار",
    "cl.v16.i3": "كشف النوايا: يصنّف كل رسالة واردة في فئات قبل التوجيه إلى مسار الاستجابة الصحيح",
    "cl.v16.i4": "التسليم للإنسان: يُعلم الوكيل المحادثات التي تحتاج إنساناً وينقلها مع الحفاظ على السياق الكامل",

    "cl.v14.title": "ذكاء جهات الاتصال والتجزئة",
    "cl.v14.i1": "سمات جهات الاتصال المخصصة: عرّف أي حقل (نص، رقم، تاريخ، قائمة منسدلة) وامأه يدوياً أو عبر بيانات الرسائل الواردة",
    "cl.v14.i2": "قوائم جهات الاتصال والتجزئات الديناميكية: جمّع جهات الاتصال بأي تركيبة سمات للمراسلة المستهدفة",
    "cl.v14.i3": "استيراد جماعي عبر CSV، وسم جماعي، وتصدير بنقرة واحدة — مع ربط الحقول بالسمات المخصصة",

    "cl.v10.title": "إطلاق المنصة",
    "cl.v10.i1": "WhatsApp Business — إرسال واستقبال وإدارة جميع محادثات العملاء في صندوق وارد موحّد واحد",
    "cl.v10.i2": "قاعدة المعرفة v1: ارفع ملفات PDF وDOCX — يجيب الذكاء الاصطناعي على أسئلة العملاء مباشرة من مستنداتك باستخدام البحث الدلالي",
    "cl.v10.i3": "إدارة الفريق: دعوة أعضاء الفريق وتعيين الأدوار والصلاحيات والوكلاء للمحادثات",
    "cl.v10.i4": "إدارة جهات الاتصال: طبقة CRM كاملة مع الوسوم والملاحظات والاستيراد/التصدير ومزامنة صور ملف واتساب",

    "cl.v27.title": "واجهة REST البرمجية v1.5 — وصول كامل للمطورين",
    "cl.v27.i1": "108 نقطة وصول REST جديدة تغطي وكلاء الذكاء الاصطناعي، حملات التواصل، التذاكر، الدردشة المباشرة، قاعدة المعرفة، تحويل النص لكلام، وإدارة الوسائط",
    "cl.v27.i2": "واجهة إدارة الوسائط: رفع الصور ومقاطع الفيديو برمجياً مع عزل تام لكل حساب — يستحيل الوصول لبيانات حساب آخر",
    "cl.v27.i3": "واجهة تحويل النص لكلام: استنساخ صوت مخصص من تسجيل صوتي وتوليد كلام عربي طبيعي من أي نص",
    "cl.v27.i4": "إطلاق توثيق المطورين العام على docs.skylightchat.com — مرجع شامل مع أمثلة بأكواد cURL وJS وPython",
    "cl.v27.i5": "تقوية الأمان: التحقق المستقل من عزل البيانات على مستوى العميل لكل نقاط الوصول؛ ترقيع ثغرة استهداف الشرائح عبر الحسابات",

    "cl.v271.title": "الفهم متعدد الوسائط للرؤية والصور",
    "cl.v271.i1": "وكلاء الذكاء الاصطناعي يمكنهم الآن رؤية وتوصيف واستخراج النصوص من الصور والإيصالات والوثائق (OCR)",
    "cl.v271.i2": "حفظ النصوص المستخرجة تلقائياً ضمن سياق المحادثة لضمان دقة الردود التتابعية",
    "cl.v271.i3": "إضافة توجيهات متخصصة للتعامل مع لقطات الشاشة وصور الشكر والمستندات الرسمية بشكل مثالي",

    "cl.v272.title": "حملات التواصل الخارجي المتسلسلة ووضع التسخين",
    "cl.v272.i1": "تشغيل حملات تواصل مخصصة متعددة المراحل مع متابعات تلقائية للشرائح والقوائم المستهدفة",
    "cl.v272.i2": "وضع التسخين التلقائي: زيادة حدود الإرسال اليومية تدريجياً للأرقام الجديدة لتجنب الحظر",
    "cl.v272.i3": "لوحة تحكم تفصيلية لتتبع تسليم الرسائل ونسب الردود لجميع الحملات النشطة",

    "cl.v273.title": "التوظيف والفلترة الذكية عبر لينكدإن",
    "cl.v273.i1": "إنشاء ونشر قوائم الوظائف على لينكدإن ومزامنة المتقدمين تلقائياً إلى لوحة التحكم الخاصة بك",
    "cl.v273.i2": "الفلترة الذكية بالذكاء الاصطناعي: تقييم وتصنيف المتقدمين تلقائياً بناءً على متطلبات الوظيفة المخصصة",
    "cl.v273.i3": "تنزيل السير الذاتية بنقرة واحدة ونظام مراحل ترشيح متكامل (جديد، قيد المراجعة، مرشح، مرفوض)",

    "cl.v274.title": "اللهجات العربية واستنساخ الصوت المخصص",
    "cl.v274.i1": "دعم أكثر من 17 لهجة عربية جاهزة للرسائل الصوتية لضمان تواصل محلي طبيعي",
    "cl.v274.i2": "استنساخ الصوت المخصص: ارفع عينة صوتية قصيرة لعلامتك التجارية وتحدث بها فوراً",
    "cl.v274.i3": "معالجة وتحويل الصوت إلى صيغة M4A المتوافقة مع تشغيل الصوت الأصلي على واتساب ودردشة الويب",

    "cl.v275.title": "الذاكرة طويلة المدى ومحرك السياق",
    "cl.v275.i1": "استخراج تفضيلات العملاء وميزانياتهم واعتراضاتهم تلقائياً أثناء المحادثات الحية",
    "cl.v275.i2": "حفظ هذه البيانات كملاحظات منظمة في ملف العميل دون تدخل بشري",
    "cl.v275.i3": "تحديث ديناميكي للشرائح: نقل العملاء تلقائياً إلى المجموعات المستهدفة بناءً على تحديثات الذاكرة",

    "cl.v276.title": "مساعد الكاتب الذكي للموظفين",
    "cl.v276.i1": "مساعدة مباشرة بالذكاء الاصطناعي لوكلاء الدعم البشري داخل صندوق الوارد الموحد",
    "cl.v276.i2": "اقتراح ردود ذكية بنقرة واحدة استناداً إلى تاريخ المحادثة وقاعدة المعرفة",
    "cl.v276.i3": "إعادة صياغة الردود: تحسين مسودات الموظفين فوراً إلى نبرات احترافية، ودودة، أو إقناعية",

    "cl.v277.title": "الوكلاء المتخصصون بالذكاء الاصطناعي",
    "cl.v277.i1": "إطلاق وكلاء فرعيين متخصصين يعملون بصمت خلف الوكيل الرئيسي لتنفيذ المهام",
    "cl.v277.i2": "وكيل الحجوزات: التحقق من التوافر وحجز المواعيد مباشرة داخل الدردشة دون روابط خارجية",
    "cl.v277.i3": "وكيل الطلبات: البحث في كتالوج المنتجات، وإنشاء الطلبات، وتتبع حالة الشحن برمجياً",

    "cl.v278.title": "منظومة الموافقات البشرية وسقوف الإنفاق",
    "cl.v278.i1": "إعداد بوابات مراجعة بشرية للعمليات الحساسة مثل النشر على السوشيال ميديا أو الإجراءات عالية التكلفة",
    "cl.v278.i2": "يقوم الذكاء الاصطناعي بإيقاف المهمة وتوليد طلب اعتماد ينتظر موافقة المدير البشري لاستئناف العمل",
    "cl.v278.i3": "تطبيق سقوف إنفاق يومية صارمة على أدوات استوديو الذكاء الاصطناعي لحماية الميزانيات التسويقية",

    "cl.v279.title": "إطلاق منصة 'هلّا' للمكالمات الهاتفية الذكية",
    "cl.v279.i1": "إطلاق منتج هلّا (halla.skylightchat.com) لإجراء واستقبال المكالمات الهاتفية بالذكاء الاصطناعي",
    "cl.v279.i2": "محادثات صوتية ثنائية الاتجاه منخفضة الكمون مع تناوب أدوار طبيعي للغاية",
    "cl.v279.i3": "استعادة المكالمات الفائتة: إطلاق محادثة واتساب تلقائية فوراً عند وجود مكالمة فائتة من عميل",

    "cl.v280.title": "الوكيلة الصوتية السعودية 'نوف' على منصة هلّا",
    "cl.v280.i1": "تقديم نوف: الوكيلة الافتراضية باللهجة السعودية لخدمة العملاء والمبيعات الهاتفية الخارجية",
    "cl.v280.i2": "المقاطعة الذكية: تتوقف نوف عن الحديث فوراً عندما يبدأ العميل بالكلام لمحاكاة السلوك البشري",
    "cl.v280.i3": "التعامل اللبق مع الصمت وسيناريوهات مخصصة لتعريف هوية المتصل ومصدر الرقم",

    "cl.v281.title": "طوابير الاتصال الآلي وتسجيل المكالمات",
    "cl.v281.i1": "إطلاق طابور الاتصال الآلي لحملات الاتصال الهاتفي المجمعة مع أولويات وإعادة محاولة ذكية",
    "cl.v281.i2": "تحديد حد أقصى بـ 3 مكالمات متزامنة لكل حساب لحماية الأرقام من الحظر في شبكات الاتصالات",
    "cl.v281.i3": "تسجيل المكالمات بالكامل وتوفير تفريغ نصي فوري ولحظي لكلا الطرفين في لوحة التحكم",

    "cl.v282.title": "التدريب اليومي التلقائي للفريق بالذكاء الاصطناعي",
    "cl.v282.i1": "يقوم الذكاء الاصطناعي بتحليل مكالمات ومحادثات الموظفين وتوليد نصائح تدريبية مخصصة يومياً",
    "cl.v282.i2": "بطاقات أداء تفصيلية تقيس أوقات الاستجابة، ومعدلات حل المشكلات، ورضا العملاء",
    "cl.v282.i3": "لوحة متصدرين تفاعلية لتشجيع المنافسة الإيجابية ورفع كفاءة فريق المبيعات والدعم",

    "cl.v283.title": "برنامج الشركاء والموزعين بنظام العلامة البيضاء",
    "cl.v283.i1": "لوحة تحكم كاملة للشركاء والموزعين لإعادة بيع المنصة تحت شعارهم الخاص",
    "cl.v283.i2": "إنشاء حسابات فرعية للعملاء، وتخصيص خطط الأسعار والحدود، وإدارة الفوترة بشكل مستقل",
    "cl.v283.i3": "إطلاق واجهة برمجة الشركاء Partner API v1 لأتمتة عمليات إنشاء الحسابات وإسناد الباقات",

    "cl.v284.title": "تحليل المشاعر وكشف النوايا الفوري",
    "cl.v284.i1": "تحليل مشاعر العملاء (إيجابي، سلبي، محايد) تلقائياً أثناء المكالمات والمحادثات الجارية",
    "cl.v284.i2": "كشف النوايا التلقائي: التعرف على نية الحجز أو الشراء أو الشكوى لتوجيه العميل للمسار الصحيح",
    "cl.v284.i3": "التصعيد الذكي للبشر: تحويل العملاء الغاضبين تلقائياً للموظفين مع نقل السياق الكامل وصورة المشكلة",

    "cl.v285.title": "الاتصال الهاتفي من المتصفح عبر WebRTC",
    "cl.v285.i1": "تضمين أداة اتصال عائمة تعتمد على تقنية WebRTC مباشرة داخل لوحة التحكم",
    "cl.v285.i2": "تمكين الموظفين البشريين من إجراء واستقبال المكالمات الهاتفية من المتصفح بنقرة واحدة ودون إعدادات معقدة",
    "cl.v285.i3": "التحكم الفوري في وضع استقبال الخطوط بين الرد الآلي بالذكاء الاصطناعي أو الرد البشري",

    "cl.v286.title": "التكامل مع أنظمة الشركات وإدارة الموارد (ERP)",
    "cl.v286.i1": "تكامل ثنائي الاتجاه أصلي ومباشر مع أنظمة تخطيط موارد المؤسسات (بما في ذلك Odoo)",
    "cl.v286.i2": "تمكين وكلاء الذكاء الاصطناعي من سحب بيانات العملاء ودفع الطلبات والفواتير والحجوزات فوراً للنظام الخارجي",
    "cl.v286.i3": "تأمين الويب هوكس الصادرة بتوقيع مشفر HMAC-SHA256 لضمان حماية وسرية مزامنة البيانات",

    "cl.cta.title": "تريد وصولاً مبكراً لما هو قادم؟",
    "cl.cta.sub": "نشارك خارطة طريقنا مع عملائنا. احجز مكالمة وسنطلعك على ما هو قادم.",
    "cl.cta.btn": "احجز عرضاً تجريبياً",

    // Contact Page
    "contact.breadcrumb": "تواصل معنا",
    "contact.freeConsult": "استشارة مجانية",
    "contact.freeConsultDesc": "احصل على عرض مخصص لاحتياجات عملك.",
    "contact.quickSetup": "إعداد سريع",
    "contact.quickSetupDesc": "ابدأ العمل خلال أيام وليس أشهر.",
    "contact.dedicatedSupport": "دعم مخصص",
    "contact.dedicatedSupportDesc": "دعم ذو أولوية وفق شروط دعم المؤسسات.",
    "contact.infoTitle": "معلومات الاتصال",
    "contact.email": "البريد الإلكتروني",
    "contact.whatsapp": "واتساب",
    "contact.office": "المكتب",
    "contact.officeLocation": "الدمام، المملكة العربية السعودية",
    "contact.hours": "ساعات العمل",
    "contact.hoursValue": "الأحد-الخميس: 9 ص - 6 م (الدمام)",
    "contact.countryCode.SA": "السعودية ٩٦٦+",
    "contact.countryCode.AE": "الإمارات ٩٧١+",
    "contact.countryCode.KW": "الكويت ٩٦٥+",
    "contact.countryCode.BH": "البحرين ٩٧٣+",
    "contact.countryCode.QA": "قطر ٩٧٤+",
    "contact.countryCode.DZ": "الجزائر ٢١٣+",
    "contact.countryCode.EG": "مصر ٢٠+",
    "contact.countryCode.US": "أمريكا ١+",
    "contact.countryCode.UK": "بريطانيا ٤٤+",
    "contact.businessType.ecommerce": "تجارة إلكترونية",
    "contact.businessType.healthcare": "الرعاية الصحية",
    "contact.businessType.realestate": "العقارات",
    "contact.businessType.education": "التعليم",
    "contact.businessType.retail": "التجزئة",
    "contact.businessType.hospitality": "الضيافة والفنادق",
    "contact.businessType.logistics": "اللوجستيات",
    "contact.businessType.finance": "التمويل والبنوك",
    "contact.businessType.government": "الجهات الحكومية",
    "contact.businessType.saas": "التقنية / ساس",
    "contact.businessType.agency": "وكالة",
    "contact.businessType.media": "الإعلام",
    "contact.businessType.automotive": "السيارات",
    "contact.businessType.other": "أخرى",
    "contact.howHear.search": "محرك البحث",
    "contact.howHear.google": "بحث جوجل",
    "contact.howHear.social": "وسائل التواصل الاجتماعي",
    "contact.howHear.linkedin": "لينكد إن",
    "contact.howHear.referral": "إحالة صديق/زميل",
    "contact.howHear.event": "فعالية / مؤتمر",
    "contact.howHear.blog": "مدونة / مقال",
    "contact.howHear.whatsapp": "واتساب",
    "contact.howHear.cold_call": "اتصال تسويقي",
    "contact.howHear.partner": "شريك / موزع",
    "contact.howHear.advertisement": "إعلان",
    "contact.howHear.other": "أخرى",
    "contact.enterpriseTitle": "استفسارات المؤسسات",
    "contact.enterpriseDesc": "للنشر الكبير والتكاملات المخصصة أو الحلول المحلية.",
    "contact.activeClients": "تركيز إقليمي",
    "contact.avgResponse": "متوسط وقت الاستجابة",
    "contact.avgResponseValue": "10 ساعات",
    "contact.poweredBy": "مدعوم بـ",
    "cookie.title": "نستخدم ملفات تعريف الارتباط",
    "cookie.desc": "نستخدم ملفات تعريف الارتباط وتقنيات مماثلة لتحسين تجربتك وتحليل حركة المرور وتخصيص المحتوى. بالقبول، فإنك توافق على",
    "cookie.privacyLink": "سياسة الخصوصية",
    "cookie.accept": "قبول الكل",
    "cookie.decline": "رفض",
    "cookie.ariaLabel": "موافقة ملفات تعريف الارتباط",
    "contact.bookDemo": "احجز عرضك التجريبي",
    "contact.bookDemoSub": "أخبرنا عن عملك وسنقوم بإعداد عرض تجريبي شخصي.",
    "contact.firstName": "الاسم الأول",
    "contact.lastName": "اسم العائلة",
    "contact.workEmail": "البريد الإلكتروني للعمل",
    "contact.phone": "رقم الهاتف",
    "contact.company": "اسم الشركة",
    "contact.website": "موقع الشركة (اختياري)",
    "contact.businessType": "نوع النشاط",
    "contact.businessTypePlaceholder": "اختر نوع النشاط",
    "contact.howHear": "كيف سمعت عنا؟",
    "contact.howHearPlaceholder": "اختر خياراً",
    "contact.submit": "احجز عرضك التجريبي",
    "contact.secure": "بياناتك آمنة",
    "contact.response24h": "استجابة خلال 10 ساعات في أيام العمل",
    "contact.freeConsultBadge": "استشارة مجانية",
    "contact.thankYou": "شكراً لك!",
    "contact.thankYouMsg": "سنتواصل معك قريباً.",
    "contact.backHome": "العودة للرئيسية",
  },
};

