/* ==========================
   GLOBAL
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* ==========================
   NAVBAR
========================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 60px;
    border-bottom: 1px solid #222;
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: .25s;
}

nav a:hover {
    color: #bbbbbb;
}

.contact-btn {
    border: 1px solid white;
    padding: 12px 22px;
    border-radius: 6px;
}

.contact-btn:hover {
    background: white;
    color: black;
}

/* ==========================
   HERO
========================== */

.hero {
    max-width: 900px;
    margin: 120px auto;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 30px;
}

.hero p {
    color: #b5b5b5;
    font-size: 22px;
    max-width: 700px;
    margin: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 45px;
}

.hero-buttons a {
    padding: 16px 34px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: .25s;
}

.hero-buttons a:first-child {
    background: white;
    color: black;
}

.hero-buttons a:last-child {
    border: 1px solid white;
    color: white;
}

.hero-buttons a:last-child:hover {
    background: white;
    color: black;
}

/* ==========================
   STATS
========================== */

.stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
}

.stat h2 {
    font-size: 58px;
}

.stat p {
    color: #999;
    margin-top: 8px;
}

/* ==========================
   MOBILE
========================== */

@media (max-width:900px) {

    .navbar {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .logo img {
        height: 42px;
    }

    .hero {
        margin: 80px auto;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats {
        grid-template-columns: repeat(2,1fr);
        gap: 50px;
    }

    .stat h2 {
        font-size: 42px;
    }
}

@media (max-width:600px) {

    .hero h1 {
        font-size: 38px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

}
