.why-join-section {
    background: hsl(217.24deg 67.44% 8.43%);
}

.section-label {
    display: inline-block;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.section-title span {
    color: #0d6efd;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: white;
    font-size: 16px;
    line-height: 1.7;
}


/* Benefit Card */

.benefit-card {
    height: 100%;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 40px rgba(20, 35, 60, 0.08);
    backdrop-filter: blur(12px);

    transition: all 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(20, 35, 60, 0.13);
}


/* Header */

.benefit-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 28px;
    margin-bottom: 5px;
    border-bottom: 1px solid #e8ebf0;
}

.benefit-icon {
    min-width: 58px;
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;
    background: #eaf2ff;
    color: #0d6efd;

    font-size: 23px;
}

.benefit-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    color: white;
}

.benefit-header h3 {
    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;
    color: white;
    margin: 7px 0 0;
}


/* Items */

.benefit-list {
    padding-top: 10px;
}

.benefit-item {
    display: flex;
    gap: 17px;
    padding: 20px 0;
}

.item-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #f0f4f9;
    color: #0d6efd;

    font-size: 15px;
}

.benefit-item h5 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 650;
    color: white;
}

.benefit-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: white;
}


/* Second Card */

.trader-card .benefit-icon {
    background: #eef8f5;
    color: #159570;
}

.trader-card .item-icon {
    color: #159570;
}


/* Mobile */

@media (max-width: 767px) {

    .section-title {
        font-size: 32px;
    }

    .benefit-card {
        padding: 25px;
    }

    .benefit-header h3 {
        font-size: 22px;
    }

}