/* section 5 poles */
    .poles_grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
        gap: 16px;
    }
    
    .pole_card {
        background: var(--light-white);
        border-radius: 16px;
        padding: 0;
        overflow: hidden;
        transition: all 0.4s;
    }
    
    .pole_card:hover {
        transform: translateY(-5px);
        border-color: var(--ob);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .pole_header {
        padding: 20px 24px 16px;
        border-bottom: 1px solid var(--light-white);
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .pole_icon {
        width: 45px; height: 45px;
        background: var(--second);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        i{
            color: var(--white);
            font-size: 25px;
        }
    }
    
    .pole_title {
        font-size: 0.92rem;
        font-weight: 700;
    }
    
    .pole_badge {
        margin-left: auto;
        font-size: 0.62rem;
        font-weight: 700;
        color: var(--second);
        border: 1px solid var(--second);
        padding: 3px 10px;
        border-radius: 20px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        white-space: nowrap;
    }
    
    .pole_body {
        padding: 20px 24px;
    }
    
    .pole_item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 10px;
        font-size: 0.82rem;
        line-height: 1.5;
    }
    
    .pole_item:last-child {
        margin-bottom: 0;
    }
    
    .pole_check {
        flex-shrink: 0;
        margin-top: 1px;
        i{
            color: var(--second);
            font-size: 16px;
        }
    }
    
    .pole_vol {
        font-size: 0.68rem;
        font-weight: 700;
        color: var(--second);
        margin-top: 14px;
        text-align: center;
        letter-spacing: 0.5px;
        padding-top: 12px;
        border-top: 1px solid var(--light-white);
    }
/* section 5 poles */

/* section ONBOARDING TIMELINE */
    .onboarding_timeline {
        max-width: 700px; 
        margin: 0 auto;
    }
    
    .tl_item {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 16px;
        margin-bottom: 0;
        position: relative;
    }
    
    .tl_item::before {
        content: '';
        position: absolute;
        left: 40px;
        top: 52px;
        bottom: -20px;
        width: 1px;
        background: var(--second);
        opacity: .5;
    }
    
    .tl_item:last-child::before {
        display: none;
    }
    
    .tl_day {
        text-align: center;
        position: relative;
        z-index: 1;
    }
    
    .tl_circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary);
        border: 2px solid var(--second);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 6px;
        i{
            font-size: 16px;
        }
    }
    
    .tl_label {
        font-size: 0.62rem;
        font-weight: 700;
        color: var(--second);
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    .tl_content {
        background: var(--light-white);
        border-radius: 16px;
        padding: 20px 24px;
        margin-bottom: 20px;
        transition: border-color 0.3s;
    }
    
    .tl_content h4 {
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 6px;
    }
    
    .tl_content p {
        font-size: 0.82rem;
        line-height: 1.5;
    }
    
    .tl_resp {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 8px;
        font-weight: 600;
        font-size: 0.7rem;
        color: var(--second);
        i{
            font-size: 0.7rem;
            color: var(--second);
        }
    }
/* section ONBOARDING TIMELINE */

/* responsive */
    /* section 5 poles */
        @media screen and (max-width: 450px){
            .poles_grid {
                grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
            }
        }
    /* section 5 poles */
/* responsive */