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

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

body{
  font-family:'Vazirmatn', sans-serif;
  background:#f4fff8;
  color:#1f2937;
  line-height:2;
}

.container{
  width:90%;
  max-width:1280px;
  margin:auto;
}

.header{
  position:sticky;
  top:0;
  z-index:999;
  backdrop-filter:blur(12px);
  background:rgba(255,255,255,0.85);
  border-bottom:1px solid rgba(0,0,0,0.05);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
}

.logo{
  font-size:28px;
  font-weight:700;
  color:#0f9f5a;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:20px;
}

.nav-links a{
  text-decoration:none;
  color:#111827;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#0f9f5a;
}

.hero{
  padding:100px 0;
  background:linear-gradient(135deg,#d9ffe9,#effff6);
}

.hero-content{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:50px;
  align-items:center;
}

.badge{
  background:#d1fae5;
  color:#047857;
  padding:10px 18px;
  border-radius:50px;
  display:inline-block;
  margin-bottom:20px;
  font-size:14px;
  font-weight:600;
}

.hero-text h1{
  font-size:54px;
  line-height:1.4;
  margin-bottom:20px;
  color:#065f46;
}

.hero-text p{
  font-size:18px;
  color:#4b5563;
  max-width:650px;
}

.hero-buttons{
  margin-top:35px;
  display:flex;
  gap:15px;
}

.btn{
  padding:14px 28px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.primary{
  background:#10b981;
  color:white;
  box-shadow:0 10px 25px rgba(16,185,129,0.3);
}

.primary:hover{
  transform:translateY(-4px);
}

.secondary{
  background:white;
  color:#111827;
  border:1px solid #d1d5db;
}

.hero-card{
  position:relative;
  background:white;
  padding:35px;
  border-radius:30px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  overflow:hidden;
}

.card-glow{
  position:absolute;
  width:200px;
  height:200px;
  background:#bbf7d0;
  border-radius:50%;
  top:-80px;
  left:-60px;
  filter:blur(40px);
}

.hero-card h3{
  margin-bottom:25px;
  font-size:24px;
  color:#047857;
  position:relative;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:15px;
  background:#f8fffb;
  padding:16px;
  border-radius:16px;
  margin-bottom:15px;
  position:relative;
}

.feature-item span{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#10b981;
  color:white;
  border-radius:12px;
}

.about-section{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:42px;
  color:#065f46;
  margin-bottom:10px;
}

.section-title p{
  color:#6b7280;
  font-size:18px;
}

.about-grid,
.downloads-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.about-card,
.download-box{
  background:white;
  padding:35px;
  border-radius:28px;
  transition:0.4s;
  box-shadow:0 12px 30px rgba(0,0,0,0.05);
  border:1px solid rgba(16,185,129,0.08);
}

.about-card:hover,
.download-box:hover{
  transform:translateY(-10px);
}

.about-card h3,
.download-box h3{
  margin-bottom:18px;
  color:#047857;
  font-size:22px;
}

.about-card p,
.download-box p{
  color:#4b5563;
  font-size:16px;
}

.downloads-page{
  padding:100px 0;
}

.icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:#dcfce7;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:25px;
}

.download-btn{
  display:inline-block;
  margin-top:25px;
  text-decoration:none;
  background:#10b981;
  color:white;
  padding:12px 24px;
  border-radius:14px;
  transition:0.3s;
  font-weight:600;
}

.download-btn:hover{
  background:#059669;
}

.footer{
  margin-top:60px;
  padding:30px 0;
  background:#052e24;
}

.footer-content{
  text-align:center;
  color:#d1fae5;
}

@media(max-width:950px){

  .hero-content{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:40px;
  }

  .navbar{
    flex-direction:column;
    gap:15px;
  }

}

@media(max-width:600px){

  .hero{
    padding:70px 0;
  }

  .hero-text h1{
    font-size:32px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .section-title h2{
    font-size:32px;
  }

  .about-card,
  .download-box{
    padding:25px;
  }

}
