body{
    zoom: 0.85;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    background:#f8fafc;
    color:#374151;
}

.container{
    width:94%;
    max-width:1400px;
    margin:0 auto;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* TOP BAR */

.top-bar{
    background:#0f172a;
    color:#e2e8f0;
    font-size:14px;
}

.top-bar-inner{
    min-height:42px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:22px;
}

/* NAVBAR */

.site-header{
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.main-nav-wrap{
    background:#ffffff;
}

.navbar{
    min-height:84px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:28px;
    font-weight:900;
    color:#f97316;
    white-space:nowrap;
}

.logo img{
    width:52px;
    height:52px;
    object-fit:contain;
}

.logo-icon{
    font-size:30px;
}

.nav-links{
    display:flex;
    align-items:center;
    list-style:none;
    gap:10px;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    color:#111827;
    font-weight:800;
    padding:12px 15px;
    border-radius:12px;
    transition:.25s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.nav-links a:hover{
    color:#f97316;
    background:#fff7ed;
}

.nav-login{
    background:#f1f5f9;
    color:#334155 !important;
}

.nav-cta{
    background:linear-gradient(135deg,#ff6b00,#ff8a1d);
    color:#ffffff !important;
    box-shadow:0 10px 22px rgba(249,115,22,.25);
}

.mobile-menu-btn{
    display:none;
    width:48px;
    height:48px;
    border:none;
    border-radius:14px;
    background:#fff7ed;
    color:#f97316;
    font-size:24px;
    cursor:pointer;
}

/* BUTTONS */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:12px;
    font-weight:800;
    cursor:pointer;
    border:none;
}

.btn-primary{
    background:#f97316;
    color:#ffffff;
}

.btn-dark{
    background:#111827;
    color:#ffffff;
}

/* HERO BASE */

.hero{
    padding:100px 0;
    background:linear-gradient(135deg,rgba(17,24,39,.85),rgba(249,115,22,.85));
    color:#ffffff;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    max-width:700px;
    line-height:1.7;
    margin-bottom:25px;
}

/* FOOTER */

.site-footer{
    background:#0f172a;
    color:#ffffff;
    padding:70px 0 0;
    margin-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap:36px;
}

.footer-col h3{
    font-size:30px;
    margin-bottom:15px;
    color:#ffffff;
}

.footer-col h4{
    font-size:18px;
    margin-bottom:18px;
    color:#ffffff;
}

.footer-col p{
    color:#cbd5e1;
    line-height:1.8;
    max-width:420px;
}

.footer-col ul{
    list-style:none;
    display:grid;
    gap:12px;
}

.footer-col ul li,
.footer-col ul li a{
    color:#cbd5e1;
    line-height:1.6;
    font-weight:600;
}

.footer-col ul li a:hover{
    color:#f97316;
}

.footer-social{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.footer-social a{
    background:#1e293b;
    color:#ffffff;
    padding:10px 14px;
    border-radius:12px;
    font-weight:800;
    transition:.25s;
}

.footer-social a:hover{
    background:#f97316;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:45px;
    padding:22px 0;
    text-align:center;
}

.footer-bottom p{
    color:#cbd5e1;
}

/* ALERT */

.alert{
    padding:16px 20px;
    border-radius:14px;
    margin-bottom:22px;
    font-weight:800;
}

.alert-success{
    background:#dcfce7;
    color:#166534;
    border:1px solid #86efac;
}

.alert-danger{
    background:#fee2e2;
    color:#991b1b;
    border:1px solid #fca5a5;
}

/* RESPONSIVE */

@media(max-width:992px){

    .top-bar{
        display:none;
    }

    .navbar{
        min-height:74px;
        position:relative;
    }

    .mobile-menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:78px;
        left:0;
        right:0;
        background:#ffffff;
        border:1px solid #eef2f7;
        border-radius:18px;
        padding:16px;
        flex-direction:column;
        align-items:stretch;
        box-shadow:0 18px 45px rgba(15,23,42,.12);
    }

    .nav-links.show{
        display:flex;
    }

    .nav-links a{
        width:100%;
        justify-content:flex-start;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .container{
        width:92%;
    }

    .hero{
        padding:70px 0;
    }

    .hero h1{
        font-size:38px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .site-footer{
        padding-top:50px;
    }
}

@media(max-width:520px){

    .logo{
        font-size:23px;
    }

    .logo img{
        width:42px;
        height:42px;
    }

    .navbar{
        min-height:68px;
    }

    .nav-links{
        top:72px;
    }

    .footer-col h3{
        font-size:26px;
    }
}