/* ---- Base ---- */
    .trust-badge-row { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 25px; font-size: 14px; opacity: 0.9; }
    .trust-item { display: flex; align-items: center; gap: 8px; }

    /* ---- FAQ ---- */
    .faq-container { max-width: 800px; margin: 0 auto; }
    .faq-item { background: white; border: 1px solid #e2e8f0; border-radius: 8px; margin-bottom: 15px; padding: 20px; cursor: pointer; transition: all 0.3s; }
    .faq-item:hover { border-color: #4F46E5; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
    .faq-q { font-weight: 600; font-size: 18px; color: #333; display: flex; justify-content: space-between; }
    .faq-a { color: #666; margin-top: 10px; display: none; line-height: 1.6; border-top: 1px solid #eee; padding-top: 10px; }
    .faq-item.active .faq-a { display: block; }
    .faq-item.active .faq-q { color: #3730A3; }

    /* ---- Comparison Table ---- */
    .comp-table { width: 100%; border-collapse: collapse; margin-top: 30px; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    .comp-table th, .comp-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid #eee; }
    .comp-table th { background: #f8f9fa; color: #333; font-weight: 700; }
    .comp-table .highlight { background: #EEF2FF; color: #3730A3; font-weight: bold; }

    /* ---- Keyword / Entity Grid ---- */
    .keyword-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; text-align: left; }
    .keyword-item { background: #fff; padding: 15px; border-radius: 8px; border-left: 4px solid #4F46E5; box-shadow: 0 2px 5px rgba(0,0,0,0.05); font-size: 15px; }

    /* ---- AEO Direct Answer ---- */
    .aeo-direct-answer { background: #EEF2FF; border-left: 5px solid #3730A3; padding: 20px 24px; max-width: 900px; margin: 30px auto; border-radius: 0 8px 8px 0; font-size: 16px; line-height: 1.7; color: #2c3e50; }
    .aeo-direct-answer strong { color: #3730A3; }

    /* ---- GEO Summary ---- */
    .geo-summary-box { background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 12px; padding: 24px 28px; max-width: 900px; margin: 30px auto; font-size: 15px; line-height: 1.7; color: #14532D; }
    .geo-summary-box h3 { color: #166534; font-size: 17px; margin: 0 0 10px; }

    /* ---- Stat Bar (new hero section addition) ---- */
    .stat-bar { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
    .stat-item { text-align: center; }
    .stat-num  { font-size: 32px; font-weight: 800; color: #fff; }
    .stat-label { font-size: 13px; opacity: 0.8; margin-top: 2px; }

    /* ---- Compliance + ERP Section ---- */
    .entity-card { background: white; padding: 25px; border-radius: 12px; border: 1px solid #E5E7EB; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
    .entity-card h3 { color: #4F46E5; font-size: 20px; margin-bottom: 10px; }
    .entity-card p { color: #666; font-size: 15px; line-height: 1.6; margin: 0; }

    @media (max-width: 768px) {
        .trust-badge-row { gap: 15px; flex-direction: column; align-items: center; }
        .comp-table { display: block; overflow-x: auto; }
        .stat-bar { gap: 20px; }
    }