.custom-hero{
    padding:70px 0;
    background:linear-gradient(135deg,#f8fbff,#ffffff);
}

.custom-hero-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:55px;
    align-items:center;
}

.custom-hero-content h1{
    font-size:52px;
    line-height:1.12;
    color:var(--primary);
    margin-bottom:22px;
}

.custom-hero-content h1 span{
    display:block;
    color:var(--accent);
}

.custom-hero-content p{
    font-size:18px;
    color:var(--muted);
    margin-bottom:28px;
    max-width:650px;
}

.custom-hero-image{
    background:#fff;
    padding:12px;
    border-radius:28px;
    box-shadow:0 25px 70px rgba(15,23,42,.14);
}

.custom-hero-image img{
    width:100%;
    display:block;
    border-radius:20px;
}

.custom-card i{
    font-size:36px;
    color:var(--accent);
    margin-bottom:18px;
}

.process-section{
    padding:90px 0;
    background:#f8fbff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(15,23,42,.08);
}

.process-card span{
    display:inline-block;
    background:#eff6ff;
    color:var(--accent);
    font-weight:800;
    padding:8px 12px;
    border-radius:12px;
    margin-bottom:18px;
}

.process-card h3{
    color:var(--primary);
    margin-bottom:12px;
}

.process-card p{
    color:var(--muted);
}

@media(max-width:1100px){
    .custom-hero-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .custom-hero-content h1{
        font-size:40px;
    }
}

@media(max-width:600px){
    .custom-hero{
        padding:50px 0;
    }

    .custom-hero-content h1{
        font-size:34px;
    }
}
/* CUSTOM CTA IMPROVEMENT */
.demo-cta{
    padding:100px 0;
    background:#f8fbff;
    text-align:center;
}

.demo-cta .container{
    max-width:900px;
    background:#fff;
    padding:70px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.demo-cta h2{
    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;
}

.demo-cta p{
    color:var(--muted);
    font-size:18px;
    margin-bottom:30px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

