* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #020617;
    color: #fff;
    text-align: center;
}

/* HERO */
.hero {
    position: relative;
    min-height: 55vh;
    padding: 20px 10px;
    background: linear-gradient(180deg, #051410, #020617);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-box {
    position: relative;
    z-index: 2;
    max-width: 420px;
    width: 100%;
    background: #041c16;
    border: 1px solid #319375;
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 0 30px rgba(49,147,117,0.6);
}

/* ✅ BIG LOGO */
.logo {
    width: 150px;          /* BIGGER */
    max-width: 90%;
    margin-bottom: 8px;
}

.hero h1 {
    font-size: 34px;
    margin-bottom: 4px;
}

.hero h1 span {
    color: #319375;
}

.tagline {
    font-size: 14px;
    margin: 6px 0 12px;
    opacity: 0.9;
}

/* BADGES */
.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.badges span {
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 50px;
    background: #020617;
    border: 1px solid #319375;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.download,
.glow {
    background: #319375;
    color: #fff;
    box-shadow: 0 0 22px rgba(49,147,117,0.9);
}

.apk-note {
    font-size: 11px;
    margin-top: 6px;
    opacity: 0.7;
}

/* STATS */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 22px 8px;
    background: #000;
}

.stat h2 {
    color: #319375;
    font-size: 18px;
}

.stat p {
    font-size: 12px;
    opacity: 0.8;
}

/* FEATURES */
.features {
    padding: 35px 12px;
}

.features h2 {
    color: #319375;
    margin-bottom: 22px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.card {
    background: #041c16;
    border: 1px solid #319375;
    border-radius: 12px;
    padding: 12px;
    font-size: 13px;
}

/* CTA */
.cta {
    padding: 35px 15px;
    background: linear-gradient(135deg, #319375, #0f3f31);
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    right: 15px;
    bottom: 15px;
    background: #25D366;
    color: #fff;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
}

/* FOOTER */
footer {
    background: #000;
    padding: 14px;
    font-size: 12px;
    opacity: 0.7;
}

/* 📱 MOBILE */
@media (max-width: 600px) {
    .logo {
        width: 130px;     /* big but safe */
    }

    .hero {
        min-height: 78vh;
    }

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