:root{
    --primary:#2563EB;
    --bg:#F8FAFC;
    --text:#1E293B;
    --card:#ffffff;
    }
    
    /* DARK MODE */
    body.dark{
    --bg:#0F172A;
    --text:#F8FAFC;
    --card:#111827;
    }
    
    body{
    font-family:Inter;
    background:var(--bg);
    color:var(--text);
    transition:.3s;
    }
    
    .section{
    padding:140px 0;
    }
    
    .light{
    background:rgba(0,0,0,0.03);
    }
    
    .head{
    text-align:center;
    margin-bottom:40px;
    }
    
    .head h2{
    font-family:Poppins;
    font-size:42px;
    }
    
    /* NAV */
    .nav{
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(10px);
    }
    
    /* HERO */
    .hero{
    padding:180px 0 140px;
    background:linear-gradient(135deg,#0F172A,#2563EB);
    color:white;
    }
    
    .badge{
    background:rgba(255,255,255,.1);
    padding:6px 12px;
    border-radius:20px;
    display:inline-block;
    margin-bottom:15px;
    }
    
    .hero h1{
    font-size:52px;
    font-family:Poppins;
    }
    
    .hero-actions{
    display:flex;
    gap:10px;
    margin-top:20px;
    }

    .hero-card{
        display:flex;
        justify-content:center;
        align-items:center;
        }
        
        .glass-card{
        background:rgba(255,255,255,0.08);
        backdrop-filter: blur(12px);
        border:1px solid rgba(255,255,255,0.15);
        padding:25px;
        border-radius:18px;
        width:100%;
        box-shadow:0 20px 50px rgba(0,0,0,0.2);
        }
        
        .card-header{
        display:flex;
        justify-content:space-between;
        align-items:center;
        margin-bottom:20px;
        }
        
        .card-header h5{
        color:white;
        margin:0;
        }
        
        .badge-live{
        font-size:12px;
        padding:4px 10px;
        background:#22C55E;
        border-radius:20px;
        color:white;
        }
        
        .metrics{
        display:flex;
        flex-direction:column;
        gap:15px;
        margin-bottom:20px;
        }
        
        .metric{
        display:flex;
        align-items:center;
        gap:12px;
        color:white;
        }
        
        .metric i{
        font-size:20px;
        color:#22C55E;
        }
        
        .metric h4{
        margin:0;
        font-size:22px;
        font-weight:700;
        }
        
        .metric p{
        margin:0;
        font-size:13px;
        opacity:0.8;
        }
        
        .mini-chart{
        display:flex;
        align-items:flex-end;
        gap:6px;
        height:60px;
        }
        
        .mini-chart .bar{
        width:12px;
        background:linear-gradient(180deg,#22C55E,#2563EB);
        border-radius:6px;
        animation:grow 1.5s ease-in-out infinite alternate;
        }
        
        .b1{height:20%}
        .b2{height:40%}
        .b3{height:60%}
        .b4{height:80%}
        .b5{height:50%}
        
        @keyframes grow{
        from{transform:scaleY(0.8); opacity:0.7;}
        to{transform:scaleY(1); opacity:1;}
        }
    
    .trust{
    margin-top:20px;
    font-size:14px;
    opacity:.9;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    }
    
    /* CARDS */
    .cardx, .service, .work, .step{
        position: relative;
        z-index: 1;
    background:var(--card);
    padding:25px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
    }
    
    .cardx i,
    .service i,
    .step i,
    .work i{
    font-size:22px;
    color:var(--primary);
    margin-right:8px;
    }
    
    .cardx:hover,
    .service:hover,
    .work:hover,
    .step:hover{
    transform:translateY(-6px);
    }
    
    /* CTA */
    .cta{
    padding:100px 0;
    background:linear-gradient(135deg,#2563EB,#22C55E);
    color:white;
    }
    
    /* FORM */
    .form input,
    .form textarea{
    width:100%;
    padding:12px;
    margin-bottom:10px;
    border-radius:10px;
    border:1px solid #ccc;
    background:var(--card);
    color:var(--text);
    }
    
    .form button{
    width:100%;
    padding:12px;
    border:none;
    background:var(--primary);
    color:white;
    border-radius:10px;
    }
    
    /* FOOTER */
    .footer{
    background:#0F172A;
    color:white;
    padding:40px;
    }
    
    /* TOP BUTTON */
    #topBtn{
    position:fixed;
    bottom:20px;
    right:20px;
    display:none;
    background:var(--primary);
    color:white;
    border:none;
    padding:10px 14px;
    border-radius:50%;
    }
    
    /* PROGRESS */
    #progressBar{
    position:fixed;
    top:0;
    left:0;
    height:4px;
    width:0%;
    background:#22C55E;
    z-index:9999;
    }

    .row{
        --bs-gutter-x:2rem;
        --bs-gutter-y:2rem;
    }

    *,
    *::before,
    *::after{
        box-sizing: border-box;
    }