.timeline-wrapper{
 
    margin:80px auto;
    padding:60px;
    background:linear-gradient(145deg,#fff,#f8fafc);
    border-radius:30px;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
}
.timeline-wrapper{
    position:relative;
    overflow:hidden;
}

.timeline-wrapper:before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:300px;
    height:300px;
    background:radial-gradient(circle,#3b82f6 0%, transparent 70%);
    opacity:.08;
}
.timeline-header{
    text-align:center;
    margin-bottom:70px;
}

.timeline-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#dbeafe;
    color:#2563eb;
    font-weight:700;
    margin-bottom:15px;
}

.timeline-header h2{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.timeline-header p{
    color:#64748b;
    font-size:18px;
    max-width:800px;
    margin:auto;
    line-height:1.7;
}

.timeline-container{
    display:flex;
    gap:25px;
    position:relative;
}

.timeline-container:before{
    content:'';
    position:absolute;
    top:40px;
    left:10%;
    width:80%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#38bdf8);
    border-radius:50px;
}

.timeline-step{
    flex:1;
    position:relative;
    z-index:2;
}

.timeline-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:#2563eb;
    box-shadow:0 10px 30px rgba(37,99,235,.15);
}

.timeline-card{
    margin-top:25px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    min-height:200px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:.3s ease;
}

.timeline-card:hover{
    transform:translateY(-8px);
}

.step-badge{
    display:inline-block;
    padding:6px 12px;
    border-radius:30px;
    background:#eff6ff;
    color:#2563eb;
    font-size:13px;
    font-weight:700;
}

.timeline-card h3{
    margin-top:15px;
    font-size:20px;
    color:#0f172a;
}

.timeline-card p{
    color:#64748b;
    line-height:1.6;
}

.timeline-footer{
    text-align:center;
    margin-top:50px;
}

.btn-cta{
    display:inline-block;
    padding:18px 50px;
    border-radius:60px;
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
    color:#fff;
    font-weight:700;
    font-size:18px;
    text-decoration:none;
    box-shadow:0 15px 30px rgba(37,99,235,.25);
    transition:.3s;
}

.btn-cta:hover{
    transform:translateY(-5px);
}

.reassurance-block{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-bottom:60px;
}

.reassurance-item{
    background:#f8fafc;
    padding:12px 18px;
    border-radius:30px;
    font-weight:600;
    color:#334155;
}


.seo-content{
    margin-top:60px;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

.seo-content h3{
    margin-bottom:15px;
    color:#0f172a;
}

.seo-content p{
    color:#64748b;
    line-height:1.8;
}

@media(max-width:900px){
    .timeline-container{
        flex-direction:column;
    }

    .timeline-container:before{
        display:none;
    }

    .timeline-card{
        min-height:auto;
    }
}

@media(max-width:600px){
    .timeline-wrapper{
        padding:30px;
    }

    .timeline-header h2{
        font-size:28px;
    }
}