.musteri-page .hero{
    padding:160px 0 100px;
    background:
    radial-gradient(circle at 20% 30%, rgba(139,92,246,.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(168,85,247,.15), transparent 40%),
    linear-gradient(180deg,#0b0f1a 0%,#1e1b4b 60%,#f8fafc 100%);
    position:relative;
    overflow:hidden;
}

.musteri-page .hero h1{
    color:#fff;
    font-size:clamp(3rem,6vw,5rem);
    font-weight:900;
    line-height:1;
    letter-spacing:-2px;
}

.musteri-page .hero h1 span{
    background:linear-gradient(to right,#a855f7,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.musteri-page .hero p{
    color:rgba(255,255,255,.75);
    max-width:650px;
    margin-top:20px;
    line-height:1.8;
}

.musteri-page .hero-box{
    margin-top:50px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:25px;
    backdrop-filter:blur(10px);
}

.musteri-page .grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.musteri-page .card{
    background:#fff;
    border-radius:22px;
    padding:30px;
    border:1px solid rgba(0,0,0,.05);
    transition:.3s;
}

.musteri-page .card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(139,92,246,0.15);
}

.musteri-page .card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#111827;
}

.musteri-page .card p{
    color:#64748b;
    line-height:1.7;
}

.musteri-page .section{
    padding:100px 0;
}

.musteri-page .section h2{
    font-size:40px;
    margin-bottom:20px;
    color:#111827;
}

.musteri-page .process{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.musteri-page .step{
    background:#fff;
    border-radius:20px;
    padding:25px;
    border:1px solid rgba(0,0,0,.05);
}

.musteri-page .step span{
    font-weight:800;
    color:#a855f7;
    display:block;
    margin-bottom:10px;
}

.musteri-page .cta{
    background:linear-gradient(135deg,#7c3aed,#6366f1);
    color:#fff;
    padding:70px;
    border-radius:30px;
    text-align:center;
}

.musteri-page .cta h2{
    color:#fff;
    margin-bottom:10px;
}

@media(max-width:992px){
    .musteri-page .grid,
    .musteri-page .process{
        grid-template-columns:1fr;
    }
}