/* ================= JOIN US SECTION ================= */

.join-us{
    width: 100%;
    padding: 100px 8%;
    background: #050816;
    color: white;
}

.section-title{
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.section-title span{
    color: #60a5fa;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-title h2{
    font-size: 3rem;
    margin: 15px 0;
    line-height: 1.2;
}

.section-title p{
    color: #a0aec0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ================= STEPS ================= */

.steps-container{
    margin-top: 70px;

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.step-card{
    position: relative;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);

    padding: 40px 30px;
    border-radius: 24px;

    transition: 0.4s ease;
    overflow: hidden;
}

.step-card:hover{
    transform: translateY(-10px);
    border-color: #60a5fa;
    box-shadow: 0 20px 40px rgba(96,165,250,0.15);
}

.step-number{
    font-size: 4rem;
    font-weight: 800;
    color: rgba(96,165,250,0.15);
    margin-bottom: 15px;
}

.step-card h3{
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.step-card p{
    color: #cbd5e1;
    line-height: 1.8;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .steps-container{
        grid-template-columns: 1fr;
    }

    .section-title h2{
        font-size: 2.3rem;
    }
}

@media(max-width:768px){

    .join-us{
        padding: 80px 5%;
    }

    .section-title h2{
        font-size: 2rem;
    }

    .step-card{
        padding: 30px 25px;
    }
}