/* =============================================
   help-styles-ai.css - סגנונות מיוחדים לסקשן AI
   ============================================= */

/* ======== טאב AI מודגש ======== */
.help-tab.ai-tab-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white !important;
    position: relative;
    animation: ai-tab-pulse 2s infinite;
    border-radius: 10px;
    margin: 5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.help-tab.ai-tab-highlight:hover {
    background: linear-gradient(135deg, #5a6fd6, #6a4190);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.help-tab.ai-tab-highlight.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-bottom-color: #667eea;
}

.ai-tab-text {
    font-weight: 700;
}

.ai-badge {
    background: #ff6b6b;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: 5px;
    left: 5px;
    animation: badge-bounce 1s ease infinite;
}

@keyframes ai-tab-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(102, 126, 234, 0.6); }
}

@keyframes badge-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ======== Hero Section מיוחד ל-AI ======== */
.ai-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f64f59 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: glow-move 8s ease-in-out infinite;
}

@keyframes glow-move {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

.ai-hero-content {
    position: relative;
    z-index: 1;
}

.ai-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.ai-hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.ai-hero-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.ai-hero-cta {
    margin-top: 30px;
}

.ai-start-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #667eea;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ai-start-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.ai-start-button.large {
    padding: 22px 45px;
    font-size: 1.3rem;
}

.btn-icon {
    font-size: 1.4rem;
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.ai-start-button:hover .btn-arrow {
    transform: translateX(-5px);
}

/* ======== יתרונות AI ======== */
.ai-benefits-showcase {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ai-benefit-card.main-benefit {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.benefit-icon-wrapper {
    background: rgba(255,255,255,0.2);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-large-icon {
    font-size: 3rem;
}

.benefit-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.benefit-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.speed-tag {
    background: #4ade80;
    color: #166534;
}

.ai-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ai-benefit-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.ai-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: #667eea;
}

.benefit-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f4ff, #e8edff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.ai-benefit-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.ai-benefit-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ======== השוואה AI vs טפסים ======== */
.versus-comparison.ai-versus .versus-side.ai-side {
    background: linear-gradient(135deg, #e8fdf4, #d1fae8);
    border-color: #27ae60;
    position: relative;
}

.versus-comparison.ai-versus .versus-side.ai-side::before {
    content: "מומלץ!";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.comparison-summary.ai-summary {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

/* ======== Workflow ======== */
.ai-workflow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.workflow-step:hover {
    transform: translateX(-5px);
}

.workflow-step.highlight-step {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.workflow-step.highlight-step h4 {
    color: white;
}

.workflow-step.highlight-step p {
    color: rgba(255,255,255,0.9);
}

.step-number-ai {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.workflow-step.highlight-step .step-number-ai {
    background: white;
    color: #667eea;
}

.workflow-step h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.workflow-step p {
    color: #6c757d;
    font-size: 0.95rem;
}

.step-visual {
    font-size: 2.5rem;
    margin-right: auto;
}

.workflow-arrow {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
}

/* ======== דוגמאות צ'אט ======== */
.chat-examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.chat-example-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #e9ecef;
}

.example-category {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.chat-bubble {
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.user-bubble {
    background: white;
    border: 2px solid #e9ecef;
    border-bottom-right-radius: 5px;
    margin-left: 20px;
}

.ai-bubble {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-bottom-left-radius: 5px;
    margin-right: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ai-emoji {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ======== טיפים AI ======== */
.tips-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tip-card.ai-tip {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tip-card.ai-tip:hover {
    border-color: #667eea;
    transform: translateY(-3px);
}

.tip-card .tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-card .tip-content h4 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.tip-card .tip-content p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ======== FAQ AI ======== */
.ai-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-faq .accordion-item {
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.ai-faq .accordion-item:hover,
.ai-faq .accordion-item.open {
    border-color: #667eea;
}

.ai-faq .accordion-header h5 span {
    font-size: 1.2rem;
}

/* ======== CTA סופי ======== */
.ai-final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 40px;
    margin-bottom: 30px;
}

.ai-final-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.ai-final-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ======== באנר AI בסקירה כללית ======== */
.ai-promo-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.ai-promo-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: promo-glow 4s ease-in-out infinite;
}

@keyframes promo-glow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(10deg); }
}

.ai-promo-content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.ai-promo-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    animation: robot-bounce 2s ease-in-out infinite;
}

@keyframes robot-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ai-promo-text {
    flex: 1;
    color: white;
}

.ai-promo-text h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.ai-promo-text p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

.ai-promo-button {
    background: white;
    color: #667eea;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ai-promo-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* עמודת AI מודגשת בטבלת השוואה */
.comparison-table th.ai-column-highlight,
.comparison-table td.ai-column-highlight {
    background: linear-gradient(135deg, #f0f4ff, #e8edff) !important;
    position: relative;
}

.comparison-table th.ai-column-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
}

.comparison-table th.ai-column-highlight::after {
    content: "★";
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 0.8rem;
}

/* ======== רספונסיבי ======== */
@media (max-width: 992px) {
    .ai-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chat-examples-grid {
        grid-template-columns: 1fr;
    }

    .tips-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ai-hero-section {
        padding: 40px 20px;
    }

    .ai-hero-section h2 {
        font-size: 1.8rem;
    }

    .ai-benefit-card.main-benefit {
        flex-direction: column;
        text-align: center;
    }

    .ai-benefits-grid {
        grid-template-columns: 1fr;
    }

    .versus-comparison.ai-versus {
        flex-direction: column;
    }

    .versus-divider {
        padding: 10px 0;
    }

    .workflow-step {
        flex-direction: column;
        text-align: center;
    }

    .step-visual {
        margin: 0 auto;
    }

    .comparison-summary.ai-summary {
        flex-direction: column;
        gap: 20px;
    }

    .ai-promo-content {
        flex-direction: column;
        text-align: center;
    }

    .ai-promo-icon {
        font-size: 3rem;
    }

    .ai-promo-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ai-start-button {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .ai-start-button.large {
        padding: 18px 30px;
        font-size: 1.1rem;
    }

    .ai-badge {
        position: static;
        display: block;
        margin-top: 5px;
    }
}
