/* =============================================
   ⭐ بوابة المستثمرين — تصميم فاخر غير مكرر
============================================= */

.investor-gateway {
    padding: 130px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7f4ee 100%);
    position: relative;
    overflow: hidden;
}

/* خط ذهبي فخم */
.investor-gateway::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100px;
    width: 420px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217,179,106,0.35));
    filter: blur(18px);
}

/* ===== الحاوية الرئيسية ===== */
.investor-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== القسم الأيسر ===== */
.investor-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.investor-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 420px;
}

/* كروت الأرقام */
.kpi-box {
    display: flex;
    gap: 26px;
}

.kpi {
    background: #fffdf7; /* أوف وايت ناعم بدل الأبيض الصريح */
    padding: 20px 26px;
    border-radius: 16px;
    border: 1px solid rgba(217,179,106,0.35);
    box-shadow: 0 12px 25px rgba(0,0,0,0.05);
    text-align: center;
}

/* الرقم نفسه – غامق وواضح */
/* رقم KPI */
/* خلفية فاخرة داخل الكروت */
.kpi {
    background: #fffaf0 !important;  /* بيج فاتح راقي */
    border: 1px solid rgba(217,179,106,0.45) !important; /* إطار ذهبي */
    box-shadow: 0 10px 25px rgba(217,179,106,0.18) !important;
}

/* الرقم */
.kpi h3 {
    color: #d9a64a !important;   /* ذهبي رئيسي */
    font-weight: 900;
    font-size: 26px;
}

/* النص أسفل الرقم */
.kpi span {
    color: #b5832d !important;   /* ذهبي أغمق */
    font-weight: 600;
    font-size: 14px;
}

/* تحسين المسافات */
.kpi-box .kpi {
    padding: 22px 28px !important;
}



/* ===== القسم الأيمن ===== */
.investor-panel {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 24px;

    border: 1px solid rgba(217,179,106,0.5);
    box-shadow: 0 18px 45px rgba(217,179,106,0.15);
}

.panel-item {
    margin-bottom: 24px;
}

.panel-item i {
    font-size: 36px;
    color: #c58a2d;
    margin-bottom: 10px;
}

.panel-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.panel-item p {
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
}

.investor-btn {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(135deg, #d9b36a, #c58a2d);
    color: #fff;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 15px;
    transition: 0.2s;
    text-decoration: none;
}

.investor-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}
