export type FaqListItem = {
  id: string;
  question: string;
  answer: string;
  defaultOpen?: boolean;
};

export type FaqListSection = {
  id: string;
  title: string;
  items: FaqListItem[];
};

export const faqListAssets = {
  icon: "/assets/images/icon/faq-icon.svg",
  iconAlt: "FAQ icon",
};

/** Demo only — replace with your own licensed video before production. */
export const faqIntroVideoDemoUrl =
  "https://www.youtube.com/watch?v=eRsGyueVLvQ";

export const faqListSections: FaqListSection[] = [
  {
    id: "general",
    title: "General Questions",
    items: [
      {
        id: "free-plan",
        defaultOpen: true,
        question: "1. What is included in the free plan?",
        answer:
          "The free plan includes basic features, limited monthly usage, standard tool support, and is perfect for individuals or small teams exploring the platform before upgrading.",
      },
      {
        id: "cancel-subscription",
        question: "2. Can I cancel my subscription at any time?",
        answer:
          "We reimburse all expenses of the Client for the payment of fines and penalties that were caused by mistakes made by us in accounting and tax accounting and reporting.",
      },
      {
        id: "data-safe",
        question: "3. Is my data safe with your platform?",
        answer:
          "Yes, the software is designed to work seamlessly across all major devices, including desktops, tablets, and smartphones, ensuring a smooth, consistent, and optimized experience anytime, anywhere.",
      },
      {
        id: "team-enterprise",
        question: "4. Do you offer team or enterprise plans?",
        answer:
          "Yes, we offer both team and enterprise plans with advanced features, higher usage limits, dedicated support, and customizable options to fit your organization's needs.",
      },
      {
        id: "all-devices",
        question: "5. Will the software work on all devices?",
        answer:
          "Yes, the software is designed to work seamlessly across all major devices, including desktops, tablets, and smartphones, ensuring a smooth and consistent experience everywhere.",
      },
    ],
  },
  {
    id: "privacy-support",
    title: "Privacy & Support",
    items: [
      {
        id: "information-protected",
        defaultOpen: true,
        question: "1. How is my personal information protected?",
        answer:
          "We protect your personal information with advanced encryption, secure data storage, and strict privacy policies, ensuring it remains safe and accessible only to authorized personnel.",
      },
      {
        id: "payment-details",
        question: "2. Do you store my payment details?",
        answer:
          "Yes, we offer both team and enterprise plans with advanced features, higher usage limits, dedicated support, and customizable options to fit your organization's needs.",
      },
      {
        id: "confidential-files",
        question: "3. Will my project or design files remain confidential?",
        answer:
          "Yes, the software is designed to work seamlessly across all major devices, including desktops, tablets, and smartphones, ensuring a smooth and consistent experience everywhere.",
      },
      {
        id: "contact-support",
        question: "4. How can I contact support if I need help?",
        answer:
          "You can contact support via email, live chat, or our help center, where our team is ready to assist you with any questions or issues promptly.",
      },
      {
        id: "revisions-updates",
        question: "5. What if I need revisions or updates after delivery?",
        answer:
          "If you need revisions or updates after delivery, we offer flexible options to make adjustments, ensuring the final result meets your expectations and requirements.",
      },
    ],
  },
  {
    id: "pricing-package",
    title: "Pricing Package",
    items: [
      {
        id: "pricing-included",
        defaultOpen: true,
        question: "1. What's included in each pricing package?",
        answer:
          "Each pricing package includes a specific set of features, usage limits, and support options, designed to match different needs and budgets for individuals or teams.",
      },
      {
        id: "custom-package",
        question: "2. Can I request a custom package?",
        answer:
          "Yes, you can request a custom package tailored to your specific needs, with personalized features, usage limits, and support options to suit your goals.",
      },
      {
        id: "revisions-price",
        question: "3. Are revisions included in the price?",
        answer:
          "Yes, revisions are included in the price, within the agreed scope, to ensure the final result aligns with your vision and requirements.",
      },
      {
        id: "development-included",
        question: "4. Is development included in the design packages?",
        answer:
          "Development is not always included in the design packages, but we offer combined design-and-development options if you need a complete end-to-end solution.",
      },
      {
        id: "upgrade-later",
        question: "5. Can I upgrade my package later?",
        answer:
          "Yes, you can upgrade your package at any time to access additional features, higher limits, and enhanced support without disrupting your ongoing work.",
      },
    ],
  },
];
