
.cd-services-section{
    background:#050816;
    padding:100px 0;
    overflow:hidden;
}

.cd-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

.cd-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    margin-bottom:60px;
}

.cd-subtitle{
    color:#4f46e5;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
}

.cd-header h2{
    color:#fff;
    font-size:64px;
    line-height:1.1;
    margin-top:10px;
    font-weight:800;
}

.cd-btn{
    padding:18px 30px;
    border-radius:100px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    text-decoration:none;
}

.cd-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.cd-card{
    position:relative;
    min-height:360px;
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s ease;
}

.cd-large{
    grid-column:span 2;
    grid-row:span 2;
    min-height:500px;
}

.cd-card:hover{
    transform:translateY(-10px);
}

.cd-glow{
    position:absolute;
    inset:0;
    opacity:0.18;
    filter:blur(80px);
}

.cd-card-inner{
    position:relative;
    z-index:2;
    background:#070b1a;
    height:100%;
    padding:35px;
    border-radius:30px;
}

.cd-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.cd-icon{
    width:70px;
    height:70px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:bold;
}

.cd-badge{
    padding:10px 16px;
    border-radius:100px;
    font-size:12px;
    font-weight:700;
}

.cd-card h3{
    color:#fff;
    font-size:34px;
    line-height:1.2;
    margin-bottom:18px;
    font-weight:700;
}

.cd-card p{
    color:#9ca3af;
    line-height:1.8;
    margin-bottom:30px;
}

.cd-features{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.cd-features li{
    display:flex;
    align-items:center;
    gap:12px;
    color:#d1d5db;
    margin-bottom:14px;
}

.cd-features li span{
    width:8px;
    height:8px;
    border-radius:50%;
    display:block;
}

.cd-link{
    text-decoration:none;
    font-weight:700;
}

@media(max-width:1024px){

    .cd-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cd-large{
        grid-column:span 2;
    }

}

@media(max-width:767px){

    .cd-grid{
        grid-template-columns:1fr;
    }

    .cd-large{
        grid-column:span 1;
    }

    .cd-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .cd-header h2{
        font-size:42px;
    }

}
