/* ===============================
   GLOBAL STYLES
=================================*/
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: #08352d;
    background: #ffffff;    /* WHITE BACKGROUND */
    overflow-x: hidden;
}

/* ===============================
   NAVBAR
=================================*/
.navbar {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.nav-left {
    font-size: 22px;
    font-weight: bold;
    color: #0b4f44;
}

.nav-right a {
    margin-left: 25px;
    color: #084337;
    text-decoration: none;
    font-size: 16px;
}

/* ===============================
   HERO SECTION
=================================*/
.hero {
    text-align: center;
    padding: 160px 20px 120px;
    position: relative;
}

.hero-logo {
    width: 200px;
    max-width: 70%;
    height: auto;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.85;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #1E8F73, #176c56);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.25s;
}

.btn-outline {
    border: 2px solid #1E8F73;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 18px;
    text-decoration: none;
    color: #1E8F73;
    transition: 0.25s;
}

.btn-outline:hover {
    background: #1E8F73;
    color: white;
}

/* ===============================
   FEATURES SECTION
=================================*/
.features {
    padding: 90px 20px;
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* Glass morphism */
.glass {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

/* ===============================
   DOWNLOAD SECTION
=================================*/
.coming-soon {
    padding: 90px 20px;
    text-align: center;
}

.store-buttons {
    display: flex;
    justify-content: center;   /* PERFECT CENTER */
    align-items: center;
    gap: 40px;                 /* EVEN SPACE */
    margin-top: 30px;
    flex-wrap: wrap;
}

.store-badge {
    width: 220px;
    height: auto;
    border-radius: 12px;
    transition: 0.25s ease;
}

.store-badge:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ===============================
   FOOTER
=================================*/
footer {
    background: #1E8F73;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.tagline {
    font-size: 14px;
    opacity: 0.85;
}

/* ===============================
   MOBILE
=================================*/
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}
