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

:root {
    /* 🎨 APP THEME COLORS */
    --primary: #22c55e;       /* Your App Green */
    --primary-dark: #15803d;
    --secondary: #0f766e;
    --dark: #0f172a;          /* Your App Dark Blue */
    --light: #ecfdf5;         /* Light Green Background */
    --text: #334155;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; scroll-behavior: smooth; }

body { background: var(--white); color: var(--text); overflow-x: hidden; }

/* === HEADER === */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; position: fixed; width: 100%; top: 0;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
    z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05);
}


.logo { 
    display: flex; 
    align-items: center; 
    gap: 10px;      /* Space between Image and Text */
    font-size: 24px; 
    font-weight: 800; 
    color: var(--dark); 
    text-decoration: none; 
}
/* Ensure the container aligns them correctly (You likely already have this) */

.logo-img {
    height: 40px; 
    width: auto;
    border-radius: 8px;
}

.watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    opacity: 0.03; /* Very faint */
    z-index: -1;
    pointer-events: none;
    filter: grayscale(100%);
}

@media (max-width: 768px) {
    .watermark { width: 300px; }
}

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 15px; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

.btn-download {
    background: var(--dark); color: var(--white) !important;
    padding: 10px 25px; border-radius: 50px; transition: 0.3s;
}
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(15, 23, 42, 0.3); }

/* === HERO SECTION === */
.hero {
    display: flex; align-items: center; justify-content: space-between;
    padding: 160px 5% 100px;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    position: relative; overflow: hidden;
}

/* Background Blobs (Matches your App Design) */
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; z-index: 0; }
.blob-1 { top: -100px; right: -100px; width: 400px; height: 400px; background: #dcfce7; }
.blob-2 { bottom: 50px; left: -100px; width: 300px; height: 300px; background: #ccfbf1; }

.hero-text { max-width: 600px; z-index: 1; }
.hero h1 { font-size: 56px; line-height: 1.1; margin-bottom: 20px; color: var(--dark); letter-spacing: -1px; }
.hero p { font-size: 20px; color: #64748b; margin-bottom: 40px; line-height: 1.6; }

.store-buttons { display: flex; gap: 15px; }
.btn-store {
    display: flex; align-items: center; gap: 10px;
    background: var(--dark); color: #fff; padding: 12px 25px;
    border-radius: 12px; text-decoration: none; transition: 0.3s;
}
.btn-store:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-outline { background: transparent; border: 2px solid var(--dark); color: var(--dark); }

.hero-image { position: relative; z-index: 1; }
.phone-mockup {
    width: 300px; border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid var(--dark); background: #000;
}

/* === FEATURES GRID === */
.features { padding: 100px 5%; text-align: center; background: #fff; }
.section-tag { color: var(--primary); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-size: 14px; margin-bottom: 10px; display: block; }
.section-title { font-size: 36px; color: var(--dark); margin-bottom: 60px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.card {
    padding: 40px; border-radius: 24px; background: #fff;
    border: 1px solid #f1f5f9; transition: 0.3s; text-align: left;
}
.card:hover { border-color: var(--primary); box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1); transform: translateY(-5px); }
.icon-box {
    width: 60px; height: 60px; background: var(--light); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 25px; color: var(--primary);
}
.card h3 { font-size: 22px; margin-bottom: 15px; color: var(--dark); }
.card p { color: #64748b; line-height: 1.6; }

/* === STATS SECTION === */
.stats {
    background: var(--dark); padding: 80px 5%; color: #fff;
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px; text-align: center;
}
.stat-item h2 { font-size: 48px; color: var(--primary); margin-bottom: 10px; }
.stat-item p { color: #94a3b8; font-size: 18px; }

/* === FOOTER === */
footer { background: #f8fafc; padding: 80px 5% 20px; margin-top: 0; border-top: 1px solid #e2e8f0; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; margin-bottom: 60px; }
.footer-col h4 { font-size: 18px; color: var(--dark); margin-bottom: 25px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col a { color: #64748b; text-decoration: none; transition: 0.2s; }
.footer-col a:hover { color: var(--primary); }

.copyright { text-align: center; padding-top: 30px; border-top: 1px solid #e2e8f0; color: #94a3b8; font-size: 14px; }

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero-text { margin-bottom: 60px; }
    .hero h1 { font-size: 42px; }
    .store-buttons { justify-content: center; }
    .nav-links { display: none; } /* Hide menu on mobile for simplicity */
}