/* Light theme with green/orange accents */
:root{
  --green:#3cb043;
  --green-dark:#2e8b3b;
  --accent:#ff8a00;
  --muted:#6b7280;
  --max-width:1100px;
  --radius:10px;
}
*{box-sizing:border-box}
body{
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin:0;
  color:#111827;
  background:#ffffff;
  line-height:1.6;
}
.container{max-width:var(--max-width);margin:0 auto;padding:1.25rem;}
.header-grid{display:flex;align-items:center;justify-content:space-between;gap:1rem;}
.brand{display:flex;gap:0.9rem;align-items:center;}
.logo{height:64px;object-fit:contain;}
.header-grid h1{font-size:1.15rem;margin:0}
.tagline{margin:0;font-size:0.9rem;color:var(--muted)}
.cta{display:flex;flex-direction:column;align-items:flex-end;gap:0.5rem}
.btn{display:inline-block;padding:0.6rem 1rem;border-radius:8px;text-decoration:none;font-weight:600}
.btn.primary{background:var(--green);color:white}
.contact{font-size:0.85rem;color:var(--muted);text-decoration:none}

/* Hero */
.hero{background:#f7fff4;padding:2rem 0;border-top:1px solid #eef7ee;border-bottom:1px solid #eef7ee}
.hero-grid{display:grid;grid-template-columns:1fr 420px;gap:2rem;align-items:center}
.hero h2{font-size:1.6rem;margin-bottom:0.5rem}
.download-badges img{height:46px;margin-right:0.6rem}
.hero-image img{width:100%;border-radius:12px;box-shadow:0 6px 18px rgba(16,24,40,0.08)}

/* Services */
.services{padding:2rem 0}
.services-grid{display:flex;gap:1rem;flex-wrap:wrap}
.card{flex:1 1 220px;background:white;padding:1rem;border-radius:10px;box-shadow:0 4px 12px rgba(16,24,40,0.04)}
.card h4{margin-bottom:0.4rem;color:var(--green-dark)}

/* How it works */
.how-it-works{padding:1.5rem 0}
.steps{list-style:decimal;margin-left:1rem;padding-left:1rem}

/* Testimonials */
.testimonials{padding:1.5rem 0}
.testimonial-slider{position:relative;min-height:90px}
.testimonial-slider blockquote{background:#ffffff;padding:1rem;border-radius:10px;box-shadow:0 6px 18px rgba(16,24,40,0.04);margin:0}
.testimonial-slider .hidden{display:none}
.testimonial-slider cite{display:block;margin-top:0.6rem;font-size:0.85rem;color:var(--muted)}

/* Contact & Footer */
.contact{padding:1.5rem 0}
.social a{color:var(--green-dark);text-decoration:none}
.site-footer{background:#f3f7f4;padding:1rem 0;text-align:center;color:var(--muted);margin-top:1.5rem}

/* Floating WhatsApp */
.whatsapp-float{position:fixed;right:18px;bottom:18px;background:transparent;border-radius:50%;box-shadow:0 8px 24px rgba(16,24,40,0.15);padding:8px;display:inline-block}
.whatsapp-float img{width:56px;height:56px;display:block}

/* Responsive */
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr;gap:1rem}
  .header-grid{flex-direction:column;align-items:flex-start}
  .cta{align-items:flex-start}
  .logo{height:56px}
}
