
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

:root {
    --primary: #125732;
    --primary-light: #e6efe9;
    --secondary: #22c55e;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Outfit", sans-serif; }
body { background-color: var(--white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 20px 0; z-index: 1000; transition: all 0.3s ease; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; background: var(--primary); color: white; display: flex; justify-content: center; align-items: center; border-radius: 12px; font-size: 20px; }
.logo-text h1 { font-size: 24px; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; line-height: 1; }
.logo-text span { font-size: 10px; font-weight: 600; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--text-dark); transition: 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-btns { display: flex; gap: 15px; }
.btn { padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: 15px; cursor: pointer; transition: 0.3s; display: inline-flex; align-items: center; justify-content: center; border: none; }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 10px 20px rgba(18, 87, 50, 0.2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 25px rgba(18, 87, 50, 0.3); }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 80px; background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%), url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?q=80&w=2000") center/cover no-repeat; position: relative; }
.hero-content { max-width: 650px; }
.badge { background: var(--primary-light); color: var(--primary); padding: 8px 16px; border-radius: 30px; font-size: 14px; font-weight: 600; display: inline-block; margin-bottom: 25px; }
.hero h1 { font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; color: #022c16; letter-spacing: -2px; }
.hero h1 span { color: var(--secondary); }
.hero p { font-size: 18px; color: #334155; margin-bottom: 40px; line-height: 1.7; font-weight: 400; max-width: 550px; }
.hero-btns { display: flex; gap: 20px; }
.btn-lg { padding: 18px 40px; font-size: 18px; }

/* Stats Section */
.stats { padding: 60px 0; background: var(--primary); color: white; margin-top: -5px; position: relative; z-index: 10; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item h2 { font-size: 48px; font-weight: 800; margin-bottom: 5px; }
.stat-item p { font-size: 15px; opacity: 0.8; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* Features Section */
.features { padding: 120px 0; background: var(--bg-light); text-align: center; }
.section-title { font-size: 40px; font-weight: 800; color: #022c16; margin-bottom: 15px; letter-spacing: -1px; }
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto 60px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-card { background: white; padding: 50px 30px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.03); transition: 0.3s; text-align: left; }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.feature-icon { width: 70px; height: 70px; background: var(--primary-light); color: var(--primary); border-radius: 20px; display: flex; justify-content: center; align-items: center; font-size: 30px; margin-bottom: 25px; }
.feature-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 15px; color: var(--text-dark); }
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* CTA Section */
.cta { padding: 120px 0; background: linear-gradient(135deg, var(--primary) 0%, #064b30 100%); color: white; text-align: center; }
.cta h2 { font-size: 48px; font-weight: 800; margin-bottom: 20px; }
.cta p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto 40px; }

/* Footer */
.footer { background: #0f172a; color: white; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.footer-about h3 { font-size: 24px; font-weight: 800; color: white; margin-bottom: 5px; }
.footer-about p { font-size: 14px; color: #94a3b8; margin-top: 20px; max-width: 300px; }
.footer-title { font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94a3b8; font-size: 14px; transition: 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { text-align: center; color: #64748b; font-size: 14px; }
