*{margin:0;padding:0;box-sizing:border-box}
:root{--green:#5ab850;--green-dark:#3a8a32;--green-light:#e8f5e6;--gold:#e8b830;--text:#2c3e2a;--white:#fff}
html{scroll-behavior:smooth}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:var(--text);overflow-x:hidden;background:var(--green-light)}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:100;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);background:rgba(255,255,255,.82);border-bottom:1px solid rgba(0,0,0,.06);padding:12px 24px;display:flex;align-items:center;justify-content:space-between}
nav .logo{display:flex;align-items:center;gap:8px;font-weight:800;font-size:18px;color:var(--green-dark)}
nav .logo img{width:32px;height:32px;border-radius:7px}
#langSelect{padding:6px 10px;border-radius:8px;border:1px solid #ccc;font-size:14px;background:var(--white);cursor:pointer}

/* HERO */
.hero{min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;background:linear-gradient(160deg,#6cc462 0%,#4a9e40 40%,#3a8530 100%);position:relative;overflow:hidden;padding:100px 24px 60px}
.hero-content{position:relative;z-index:2;max-width:600px}
.hero-icon{width:160px;height:160px;border-radius:36px;box-shadow:0 20px 60px rgba(0,0,0,.25);margin:0 auto 28px;animation:float 3s ease-in-out infinite}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
.hero h1{font-size:clamp(36px,7vw,56px);color:var(--white);font-weight:900;margin-bottom:12px;letter-spacing:-.5px}
.hero p{font-size:clamp(16px,3vw,20px);color:rgba(255,255,255,.88);margin-bottom:36px;line-height:1.5}
.store-badge{display:inline-block;transition:transform .2s}
.store-badge:hover{transform:scale(1.05)}
.store-badge img{height:54px}

/* Floating daisies bg */
.daisy-bg{position:absolute;inset:0;z-index:1;pointer-events:none}
.daisy-bg span{position:absolute;font-size:32px;opacity:.15;animation:drift linear infinite}
@keyframes drift{0%{transform:translateY(0) rotate(0deg)}100%{transform:translateY(-110vh) rotate(360deg)}}

/* FEATURES */
.features{padding:80px 24px;max-width:960px;margin:0 auto}
.features h2{text-align:center;font-size:28px;font-weight:800;margin-bottom:48px;color:var(--green-dark)}
.feature-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px}
.feature-card{background:var(--white);border-radius:20px;padding:32px 28px;box-shadow:0 4px 20px rgba(0,0,0,.06);transition:transform .2s,box-shadow .2s}
.feature-card:hover{transform:translateY(-4px);box-shadow:0 8px 30px rgba(0,0,0,.1)}
.feature-card .icon{font-size:40px;margin-bottom:14px}
.feature-card h3{font-size:18px;font-weight:700;margin-bottom:8px;color:var(--green-dark)}
.feature-card p{font-size:15px;color:#555;line-height:1.55}

/* HOW IT WORKS */
.how{padding:80px 24px;background:var(--white)}
.how h2{text-align:center;font-size:28px;font-weight:800;margin-bottom:48px;color:var(--green-dark)}
.steps{display:flex;gap:32px;max-width:900px;margin:0 auto;flex-wrap:wrap;justify-content:center}
.step{text-align:center;flex:1;min-width:200px;max-width:260px}
.step .num{width:56px;height:56px;border-radius:50%;background:var(--green);color:var(--white);display:inline-flex;align-items:center;justify-content:center;font-size:24px;font-weight:800;margin-bottom:14px}
.step h3{font-size:17px;font-weight:700;margin-bottom:6px}
.step p{font-size:14px;color:#666;line-height:1.5}

/* FOOTER */
footer{background:#2c3e2a;color:rgba(255,255,255,.7);text-align:center;padding:32px 24px}
footer a{color:rgba(255,255,255,.85);text-decoration:none}
footer a:hover{text-decoration:underline}
footer .links{margin-bottom:12px;display:flex;gap:20px;justify-content:center;flex-wrap:wrap}

/* RTL */
[dir="rtl"] nav{flex-direction:row-reverse}
[dir="rtl"] nav .logo{flex-direction:row-reverse}
[dir="rtl"] .steps{flex-direction:row-reverse}

@media(max-width:600px){
  .hero{padding:90px 20px 50px}
  .hero-icon{width:120px;height:120px;border-radius:28px}
  .features,.how{padding:50px 20px}
  .steps{flex-direction:column;align-items:center}
}
