/* ===== Download Guide ===== */

.guidePlatforms{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap:16px;
  margin-top: 28px;
}

.guidePlatform{
  padding:18px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.12);
  text-align:center;
  cursor:pointer;
  transition:.25s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.guidePlatform:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.22);
}

.guidePlatform.active{
  outline: 2px solid rgba(255,0,180,.45);
}

.guidePlatform__icon{
  font-size:28px;
}

.guidePlatform__name{
  margin-top:10px;
  font-weight:700;
}

/* Steps */
.guideStepsWrap{
  margin-top: 30px;
}

.guideSteps{
  max-width: 720px;
  margin:auto;
  padding:24px;
  border-radius:20px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.guideStep{
  display:flex;
  gap:14px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.guideStep:last-child{
  border-bottom:none;
}

.guideStep__num{
  width:28px;
  height:28px;
  border-radius:50%;
  background: linear-gradient(135deg, #ff4ecd, #5d8bff);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:800;
}
