/* ===========================
   Slide 3 — Corporate Case Management
   =========================== */
.slide-3 {
    background: radial-gradient(ellipse at 30% 70%, #0a111a 0%, #05080c 60%, #020305 100%);
    position: relative;
    display: flex;
    align-items: center;
}

.glow-blue-center {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.gold-text {
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.slide-layout-two-col {
    display: flex;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.col-left, .col-right {
    flex: 1;
}

/* بطاقة المستثمر (Investor Note) */
.investor-note {
    background: linear-gradient(90deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.02) 100%);
    border-right: 4px solid var(--gold);
    padding: 18px 20px;
    border-radius: 12px 0 0 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

    .investor-note strong {
        color: var(--gold);
    }

/* قائمة المميزات المؤسسية */
.premium-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .p-feature:hover {
        background: rgba(255,255,255,0.03);
        border-color: rgba(255,255,255,0.08);
        transform: translateX(-5px);
    }

.pf-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.p-feature h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.p-feature p {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* الواجهة التخيلية (Mockup) - Glassmorphism */
.case-mockup {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.02);
    backdrop-filter: blur(20px);
    transform: perspective(1000px) rotateY(-5deg) translateY(10px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    direction: rtl;
}

    .case-mockup:hover {
        transform: perspective(1000px) rotateY(0deg) translateY(0px);
        box-shadow: 0 30px 60px rgba(59,130,246,0.15);
        border-color: rgba(59,130,246,0.3);
    }

.mockup-header {
    background: rgba(0,0,0,0.3);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

    .mockup-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #4b5563;
    }

        .mockup-dots span:nth-child(1) {
            background: #ef4444;
        }

        .mockup-dots span:nth-child(2) {
            background: #eab308;
        }

        .mockup-dots span:nth-child(3) {
            background: #22c55e;
        }

.mockup-title {
    flex: 1;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.case-card {
    padding: 30px 24px;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.case-id {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    font-family: monospace;
}

.case-name {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    margin-top: 6px;
    line-height: 1.4;
}

/* حالة القضية مع تأثير النبض */
.case-status {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(34,197,94,0.3);
    white-space: nowrap;
}

.pulse-status {
    animation: softPulse 2s infinite;
}

/* فريق العمل */
.case-team {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.team-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.team-avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #0f172a;
    margin-left: -10px;
    z-index: 1;
}

    .avatar.more {
        background: var(--gold);
        color: #000;
        z-index: 0;
    }

/* شريط التتبع (Timeline) */
.case-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.progress-step {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    text-align: center;
    position: relative;
    width: 80px;
}

    .progress-step::before {
        content: '';
        display: block;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #374151;
        margin: 0 auto 8px;
        border: 2px solid #1f2937;
    }

    .progress-step.completed {
        color: #fff;
    }

        .progress-step.completed::before {
            background: var(--gold);
            border-color: rgba(201,168,76,0.3);
        }

    .progress-step.active-step {
        color: #3b82f6;
        font-weight: bold;
    }

        .progress-step.active-step::before {
            background: #3b82f6;
            border-color: rgba(59,130,246,0.4);
            box-shadow: 0 0 10px #3b82f6;
        }

.progress-line {
    flex: 1;
    height: 2px;
    background: #374151;
    margin: 0 4px;
    position: relative;
    top: -10px;
}

    .progress-line.completed-line {
        background: var(--gold);
    }

/* شارة المخاطر (Risk Badge) */
.case-roi-badge {
    background: linear-gradient(135deg, rgba(34,197,94,0.1) 0%, rgba(34,197,94,0.02) 100%);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.roi-icon {
    font-size: 1.8rem;
}

.case-roi-badge strong {
    display: block;
    color: #22c55e;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.case-roi-badge span {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    line-height: 1.5;
    display: block;
}

@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34,197,94,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34,197,94,0);
    }
}

@media (max-width: 992px) {
    .slide-layout-two-col {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .case-mockup {
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}
