.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  color:var(--secondary);
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:.9rem;
}

.section-title h2{
  font-size:3rem;
  margin-top:18px;
  margin-bottom:18px;
}

.section-title p{
  color:#aebed1;
  max-width:720px;
  margin:auto;
  line-height:1.8;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.feature-card{
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02)
  );

  border:1px solid rgba(255,255,255,.06);

  border-radius:28px;

  padding:32px;

  transition:.4s;
}

.feature-card:hover{
  transform:translateY(-8px);

  border-color:rgba(0,194,255,.3);
}

.feature-icon{
  width:70px;
  height:70px;

  border-radius:18px;

  background:linear-gradient(
    135deg,
    #0066ff,
    #00c2ff
  );

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:1.8rem;

  margin-bottom:22px;
}

.feature-card h3{
  font-size:1.4rem;
  margin-bottom:16px;
}

.feature-card p{
  color:#b4c2d4;
  line-height:1.8;
}
 .download-area{
      margin-top:34px;
      display:flex;
      gap:16px;
      justify-content:center;
      flex-wrap:wrap;
    }