/* ================= JOIN SECTION ================= */

.join-section {
    padding: 90px 10%;
    background: #ffffff;
}

.join-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* LEFT SIDE */

.join-steps {
    flex: 1;
}

.join-steps h2 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 700;
}

.join-steps h2 span {
    color: #f4b400;
}

.subtitle {
    color: #777;
    font-size: 20px;
    margin-bottom: 30px;
}

.steps-list {
    list-style: none;
    padding: 10;
}

.steps-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 30px;
    font-size: 19px;
    color: #444;
    transition: all 1.8s ease;
}

/* Number Circle */

.steps-list li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: #e5e5e5;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 20px;
    font-weight: 600;
}

.steps-list {
    counter-reset: step;
}

/* Active Step */

.steps-list li.active {
    font-weight: 600;
    color: #f4b400;
}

.steps-list li.active::before {
    background: #f4b400;
    color: #000;
}

/* ================= SILVER IPHONE ================= */

.phone-frame {
    position: relative;
    width: 290px;
    height: 570px;
    border-radius: 45px;
    padding: 10px;

    background: linear-gradient(
        145deg,
    
       #333333
    );

    box-shadow:
        0 25px 60px rgba(0,0,0,0.25),
        inset 0 0 8px rgba(255,255,255,0.8),
        inset 0 0 12px rgba(0,0,0,0.1);

    transition: transform 0.4s ease;
}

/* Hover animation */

.phone-frame:hover {
    transform: translateY(-10px);
}

/* Screen */

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 35px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}

/* Notch */

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 20px;
    background: #333333;
    border-radius: 15px;
    z-index: 10;
}

/* Responsive */

@media(max-width: 992px) {

    .join-container {
        flex-direction: column;
        text-align: center;
    }

    .phone-frame {
        margin-top: 50px;
    }

}