
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  background:#f5f9f6;
  color:#1f2937;
  line-height:1.6;
}

.hero{
  min-height:100vh;
  padding:2rem 6%;
  background:linear-gradient(135deg,#d8f3dc,#ffffff);
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:1.8rem;
  font-weight:700;
  color:#2d6a4f;
}

nav ul{
  display:flex;
  list-style:none;
  gap:1.5rem;
  align-items:center;
}

nav a{
  text-decoration:none;
  color:#1f2937;
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 400px;
  gap:4rem;
  align-items:center;
  margin-top:6rem;
}

.hero h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:1.5rem;
}

.hero p{
  font-size:1.1rem;
  margin-bottom:2rem;
}

.btn{
  background:#2d6a4f;
  color:white;
  border:none;
  padding:0.9rem 1.4rem;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
}

.secondary{
  background:white;
  color:#2d6a4f;
  border:2px solid #2d6a4f;
}

.hero-buttons{
  display:flex;
  gap:1rem;
}

.card{
  background:white;
  padding:2rem;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.progress{
  width:100%;
  height:10px;
  background:#e5e7eb;
  border-radius:999px;
  margin:1rem 0;
}

.bar{
  width:78%;
  height:100%;
  background:#52b788;
  border-radius:999px;
}

.section{
  padding:5rem 6%;
}

.section h2{
  text-align:center;
  margin-bottom:3rem;
  font-size:2.5rem;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;
}

.feature{
  background:white;
  padding:2rem;
  border-radius:18px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.dark{
  background:#1b4332;
  color:white;
}

.pricing{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;
}

.plan{
  background:white;
  color:#1f2937;
  padding:2rem;
  border-radius:20px;
  text-align:center;
}

.featured{
  transform:scale(1.05);
}

.price{
  font-size:2rem;
  font-weight:700;
  margin:1rem 0;
}

.dashboard{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;
}

.dashboard-card{
  background:white;
  padding:2rem;
  border-radius:20px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.delivery-status{
  display:flex;
  gap:0.5rem;
  margin-top:1rem;
}

.dot{
  width:15px;
  height:15px;
  border-radius:50%;
  background:#cbd5e1;
}

.active{
  background:#52b788;
}

footer{
  background:#081c15;
  color:white;
  text-align:center;
  padding:3rem;
}

@media(max-width:900px){
  .hero-content{
    grid-template-columns:1fr;
  }

  nav ul{
    display:none;
  }

  .hero h1{
    font-size:2.8rem;
  }
}
