@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

/* Global Dark Background Force */
html, body {
    background-color: #0a0d14 !important;
    color: #f8fafc !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
}

ul, ol { list-style: none !important; padding: 0; margin: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar Fix */
.navbar {
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    position: sticky; top: 0; z-index: 1000;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
    color: #94a3b8; text-decoration: none; font-weight: 600; font-size: 14px;
    padding: 8px 14px; border-radius: 6px; transition: 0.2s;
}
.nav-links a:hover { color: #ffffff; background: rgba(255, 255, 255, 0.05); }
.nav-btn-green { background: #10b981 !important; color: #000000 !important; font-weight: 700 !important; }

/* Hero Section Fix */
.hero { padding: 60px 0; background: #0a0d14; }
.hero-grid { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; }
.hero-left { flex: 1.2; min-width: 320px; }
.hero-right { flex: 0.8; min-width: 300px; }

.hero-badge {
    display: inline-block; background: rgba(0, 180, 216, 0.15); border: 1px solid rgba(0, 180, 216, 0.3);
    color: #00b4d8; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 15px;
}
.hero-title { font-size: 40px; font-weight: 800; line-height: 1.2; color: #ffffff; margin-bottom: 15px; }
.hero-title span { color: #00b4d8; }
.hero-desc { font-size: 16px; color: #94a3b8; margin-bottom: 25px; }

/* Visible Hero Buttons Fix */
.hero-btn-group { display: flex; gap: 12px; margin-top: 20px; }
.btn-hero-primary {
    background: #00b4d8 !important; color: #0a0d14 !important; font-weight: 700 !important;
    padding: 12px 24px; border-radius: 8px; text-decoration: none !important; font-size: 15px; display: inline-block;
}
.btn-hero-whatsapp {
    background: #25d366 !important; color: #ffffff !important; font-weight: 700 !important;
    padding: 12px 24px; border-radius: 8px; text-decoration: none !important; font-size: 15px;
    display: inline-flex; align-items: center; gap: 8px;
}

/* Feature Box Fix */
.feature-box {
    background: #121826 !important; border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px; border-radius: 12px;
}
.feature-box h3 { color: #00b4d8; font-size: 20px; margin-bottom: 15px; font-weight: 700; }
.feature-box li {
    color: #cbd5e1 !important; font-size: 15px; margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}
.feature-box li i { color: #00b4d8; }

/* Stats Section Fix (Forcing Dark Background) */
.stats-section { padding: 40px 0; background: #0a0d14 !important; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.stat-box {
    background: #121826 !important; border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px; border-radius: 12px; text-align: center; color: #ffffff !important;
}
.stat-box h3 { font-size: 32px; font-weight: 800; color: #00b4d8 !important; margin-bottom: 5px; }
.stat-box p { color: #94a3b8 !important; font-size: 14px; margin: 0; }