/* ========== تصميم صفحة كيف تنضم كفريق ========== */
.how-to-join-hero {
    background: linear-gradient(120deg, #eef2f7, #e2e8f0);
    padding: 50px 0 40px;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
}
.how-to-join-hero h1 {
    font-weight: 800;
    color: #1e4a3b;
    font-size: 2.2rem;
}
.how-to-join-hero h1 i {
    color: #f9c74f;
    margin-left: 10px;
}
.how-to-join-hero p {
    color: #334155;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* الشبكة الأساسية للخطوات */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

/* كل بطاقة خطوة */
.step-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid #eef2f6;
    transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.07);
}

/* رقم الخطوة في دائرة */
.step-number {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: #1e4a3b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 8px 15px rgba(30,74,59,0.2);
}

/* محتوى الخطوة */
.step-content h3 {
    font-weight: 800;
    font-size: 1.4rem;
    color: #1e4a3b;
    margin-bottom: 10px;
}
.step-content p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1rem;
}
.step-content .highlight {
    color: #f9c74f;
    font-weight: 700;
    background: #fffbeb;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

/* صندوق ما بعد الانضمام */
.after-join-box {
    background: #f8fafc;
    border-right: 5px solid #f9c74f;
    border-radius: 24px;
    padding: 25px;
    max-width: 700px;
    margin: 0 auto 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.after-join-box h4 {
    color: #1e4a3b;
    font-weight: 800;
    margin-bottom: 15px;
}
.after-join-box p {
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

/* زر العودة */
.back-home-btn {
    text-align: center;
    margin-bottom: 50px;
}
.back-home-btn a {
    display: inline-block;
    background: #1e4a3b;
    color: white;
    border-radius: 60px;
    padding: 14px 35px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s;
    box-shadow: 0 6px 15px rgba(30,74,59,0.15);
}
.back-home-btn a:hover {
    background: #f9c74f;
    color: #1e4a3b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249,199,79,0.3);
}

@media (max-width: 576px) {
    .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .step-number {
        margin-bottom: 10px;
    }
    .how-to-join-hero h1 {
        font-size: 1.8rem;
    }
}