/* Stats Bar */
        .stats-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 40px 20px;
            background: white;
            list-style: none;
            text-align: center;
            gap: 20px;
            margin: 0;
        }

        .stats-bar li span.number { font-size: 28px; font-weight: bold; display: block; margin-bottom: 5px; }

        .table-container { width: 100%; overflow-x: auto; padding: 40px 20px; box-sizing: border-box; }
        table { width: 100%; max-width: 1100px; margin: 0 auto; border-collapse: collapse; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        thead tr { background: var(--primary); color: white; }
        th, td { padding: 18px; text-align: left; border-bottom: 1px solid #eee; }

        tr { height: 70px; border-bottom: 1px solid #ddd; }
        
        tr:nth-child(even) {
  background-color: #D6EEEE;
}
        .how-it-works { text-align: center; padding: 60px 20px; background: #f9f9f9; }
        .stats-bar { display: flex; justify-content: space-around; flex-wrap: wrap; list-style: none; padding: 0; gap: 20px; }


        /* قسم الـ Hero ومصيدة السنيبت الصوتية والتقنية المعززة */
        .hero { background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%); color: var(--white); padding: 80px 0; text-align: center; }
        .hero h1 { font-size: 2.6rem; margin: 0 0 20px 0; font-weight: 800; }
        .hero p { font-size: 1.2rem; max-width: 780px; margin: 0 auto 30px auto; opacity: 0.95; line-height: 1.7; }


        /* صندوق الأسئلة الشائعة التفاعلي التلقائي */
        .faq-box { background: var(--white); border-radius: 8px; padding: 35px; box-shadow: 0 4px 12px rgba(0,0,0,0.02); margin-bottom: 70px; border: 1px solid #f1f5f9; }
        details { border-bottom: 1px solid #f1f5f9; padding: 18px 0; }
        details:last-of-type { border-bottom: none; }
        summary { font-weight: 700; color: var(--dark); cursor: pointer; outline: none; font-size: 1.1rem; }
        details p { color: #64748b; margin: 12px 0 0 0; padding-left: 15px; font-size: 0.98rem; line-height: 1.6; }