* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
a {
    background-color: #1a4314; /* Hijau gelap sesuai gambar */
    color: white;
    overflow-x: hidden;
}
body {
    background-color: #1a4314; /* Hijau gelap sesuai gambar */
    color: white;
    overflow-x: hidden;
}

/* Background Pattern (Opsional untuk efek geometris) */
body::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.03) 25%, transparent 25%), 
                      linear-gradient(225deg, rgba(255,255,255,0.03) 25%, transparent 25%);
    background-size: 100px 100px;
    z-index: -1;
}

/* --- HEADER & NAVBAR --- */
header {
    padding: 20px 5%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #ff4d4d; /* Warna merah untuk menu aktif */
}

.login-btn a {
    background: white;
    color: #333;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- HERO SECTION --- */
.hero {
    padding: 50px 5%;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Bagian Kiri: Visual */
.hero-visual {
    flex: 1;
    position: relative;
}

.mockup-container {
    position: relative;
}

.laptop {
    width: 100%;
    max-width: 550px;
    display: block;
}

.phone {
    width: 150px;
    position: absolute;
    bottom: -30px;
    right: 50px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.floating-cube {
    position: absolute;
    top: 50%;
    right: 0;
    width: 60px;
    height: 60px;
    background: #4deeea;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Bagian Kanan: Konten */
.hero-content {
    flex: 1;
    padding-left: 50px;
}

.app-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.app-badges img {
    height: 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-content h1 span {
    font-weight: 800;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d1d1d1;
    max-width: 500px;
}

.closing {
    margin-top: 15px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        padding-left: 0;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav-links {
        display: none; /* Sembunyikan menu di mobile atau gunakan hamburger */
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}