*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Inter,sans-serif;

background:#ffffff;

color:#111827;

}

.container{

width:1200px;

max-width:95%;

margin:auto;

}

header{

position:fixed;

top:0;

left:0;

width:100%;

background:white;

border-bottom:1px solid #eee;

z-index:1000;

}

nav{

height:80px;

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

display:flex;

align-items:center;

gap:12px;

text-decoration:none;

}

.logo-icon{

width:45px;

height:45px;

background:#2563eb;

color:white;

display:flex;

align-items:center;

justify-content:center;

border-radius:12px;

font-size:20px;

}

.logo-text{

font-size:24px;

font-weight:800;

color:#111827;

}

.logo-text span{

color:#2563eb;

}

.menu{

display:flex;

gap:35px;

list-style:none;

}

.menu a{

text-decoration:none;

color:#444;

font-weight:500;

transition:.3s;

}

.menu a:hover{

color:#2563eb;

}

.btn{

padding:15px 28px;

border-radius:12px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn-primary{

background:#2563eb;

color:white;

}

.btn-primary:hover{

background:#1d4ed8;

}

.btn-secondary{

border:1px solid #ddd;

color:#111827;

}

.hero{

padding-top:180px;

padding-bottom:120px;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

}

.badge{

display:inline-block;

padding:8px 18px;

background:#eff6ff;

color:#2563eb;

border-radius:50px;

font-weight:600;

margin-bottom:25px;

}

.hero h1{

font-size:62px;

line-height:1.1;

font-weight:800;

margin-bottom:25px;

}

.hero h1 span{

color:#2563eb;

}

.hero p{

font-size:20px;

color:#6b7280;

line-height:1.8;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

}

.dashboard-card{

background:white;

padding:35px;

border-radius:24px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.dashboard-title{

font-size:13px;

font-weight:700;

letter-spacing:2px;

color:#999;

margin-bottom:15px;

}

.dashboard-number{

font-size:38px;

font-weight:700;

margin-bottom:20px;

}

.progress{

height:12px;

background:#e5e7eb;

border-radius:20px;

overflow:hidden;

margin-bottom:25px;

}

.progress-bar{

height:100%;

background:#22c55e;

}

.dashboard-info{

display:flex;

justify-content:space-between;

margin-bottom:30px;

}

.dashboard-info span{

display:block;

font-size:30px;

font-weight:700;

}

.estimate{

padding:18px;

background:#f8fafc;

border-radius:15px;

font-size:15px;

}

.mobile-button{

display:none;

font-size:28px;

cursor:pointer;

}

@media(max-width:900px){

.menu{

display:none;

}

.header-buttons{

display:none;

}

.mobile-button{

display:block;

}

.hero-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:42px;

}

.hero{

padding-top:140px;

}

}

/* =======================================================
   FOOTER
======================================================= */

.footer{
    background:#0f172a;
    color:#cbd5e1;
    margin-top:100px;
}

.footer .container{
    padding:70px 0 30px;
}

.footer-top{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    margin-bottom:50px;

}

.footer-logo{

    display:flex;
    align-items:center;
    gap:12px;

    color:#fff;

    font-size:26px;

    font-weight:700;

    margin-bottom:20px;

}

.footer-logo i{

    color:#22c55e;

}

.footer-text{

    line-height:1.8;

    color:#94a3b8;

}

.footer-column h4{

    color:#fff;

    margin-bottom:18px;

    font-size:18px;

}

.footer-column ul{

    list-style:none;

}

.footer-column li{

    margin-bottom:12px;

}

.footer-column a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:#22c55e;

}

.footer-warning{

    display:flex;

    gap:20px;

    background:#16213e;

    padding:25px;

    border-radius:15px;

    margin-bottom:20px;

}

.footer-warning i{

    color:#22c55e;

    font-size:24px;

    margin-top:4px;

}

.footer-warning strong{

    display:block;

    color:#fff;

    margin-bottom:10px;

}

.footer-warning p{

    line-height:1.8;

    color:#cbd5e1;

}

.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#94a3b8;

    font-size:14px;

}

@media(max-width:900px){

.footer-top{

grid-template-columns:1fr;

}

.footer-bottom{

flex-direction:column;

gap:15px;

text-align:center;

}

.footer-warning{

flex-direction:column;

}

}