.project-details-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    padding:24px;
    background:#050816;
}

.project-context-card,
.project-goals-card{
    background:
    linear-gradient(
    180deg,
    rgba(8,15,35,.96),
    rgba(4,8,20,.96)
    );
    border:1px solid rgba(255,255,255,.05);
    border-radius:20px;
    padding:24px;
    position:relative;
    overflow:hidden;
}

.project-context-card::before,
.project-goals-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(
    circle at top right,
    rgba(255,119,0,.10),
    transparent 35%
    );
    pointer-events:none;
}

.section-title{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.section-title span{
    width:28px;
    height:3px;
    border-radius:999px;
    background:#ff6b00;
}

.section-title h2{
    color:white;
    font-size:20px;
    font-weight:700;
}

.context-text{
    color:rgba(255,255,255,.65);
    line-height:1.7;
    margin-bottom:24px;
    max-width:620px;
    font-size:14px;
}

.context-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.context-item{
    display:flex;
    gap:14px;
}

.context-icon{
    width:42px;
    height:42px;
    border-radius:14px;
    background:rgba(255,119,0,.10);
    border:1px solid rgba(255,119,0,.14);
    color:#ff7b00;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:14px;
}

.context-item h3{
    color:white;
    margin-bottom:6px;
    font-size:15px;
}

.context-item p{
    color:rgba(255,255,255,.58);
    line-height:1.6;
    font-size:13px;
}

.goals-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.goal-card{
    background:rgba(255,255,255,.025);
    border:1px solid rgba(255,255,255,.05);
    border-radius:16px;
    padding:18px;
    transition:.25s;
}

.goal-card:hover{
    transform:translateY(-2px);
    border-color:rgba(255,119,0,.20);
}

.goal-icon{
    width:42px;
    height:42px;
    border-radius:14px;
    background:rgba(255,119,0,.10);
    border:1px solid rgba(255,119,0,.15);
    color:#ff7b00;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
    font-size:14px;
}

.goal-card h3{
    color:white;
    font-size:15px;
    margin-bottom:6px;
}

.goal-card p{
    color:rgba(255,255,255,.55);
    line-height:1.6;
    font-size:13px;
}

@media(max-width:1100px){

    .project-details-section{
        grid-template-columns:1fr;
    }

    .goals-grid{
        grid-template-columns:1fr;
    }

}