* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #e8eff7, #cfdbe9);
    min-height: 100vh;
}

/* NAVBAR */

header {
    padding: 20px 90px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px;
}

/* MENU */

.menu {
    display: flex;
    gap: 30px;
    margin-left: 40px;
}

.menu a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
    transition: 0.25s;
}

.menu a:hover {
    color: #2f63d8;
}

/* BUTTON NAV */

.nav-btn {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-akun {
    background: #eef3f9;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: 0.25s;
}

.btn-akun:hover {
    background: #e2e9f3;
}

.btn-masuk {
    background: linear-gradient(45deg, #3a6ff7, #4f8df7);
    color: white;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: 0.25s;
}

.btn-masuk:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* HERO */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 130px;
    gap: 60px;
}

/* TEXT */

.hero-left {
    max-width: 540px;
}

.hero-left h1 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 800;
}

.kuning {
    color: #f4a000;
}

.biru {
    color: #2f8fc6;
}

.desc {
    margin-top: 18px;
    font-size: 18px;
    color: #5c6f82;
    line-height: 1.6;
}

/* BUTTON HERO */

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn1 {
    background: #f4a000;
    color: white;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    transition: 0.25s;
}

.btn1:hover {
    transform: translateY(-2px);
}

.btn2 {
    background: #2f8fc6;
    color: white;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    transition: 0.25s;
}

.btn2:hover {
    transform: translateY(-2px);
}

/* IMAGE */

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
    width: 420px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */

@media (max-width:1024px) {

    header {
        padding: 20px 50px;
    }

    .hero {
        padding: 60px 70px;
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 48px;
    }

    .hero-right img {
        width: 340px;
    }

}

@media (max-width:768px) {

    header {
        padding: 20px;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .desc {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn1,
    .btn2 {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .hero-right img {
        width: 100%;
        max-width: 350px;
        margin-top: 25px;
    }

}

img {
    max-width: 100%;
    height: auto;
}