/* QuickQ - Download Page CSS */
.page-hero {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.page-hero p {
  font-size: 16px;
  color: var(--text-mute);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s;
}
.download-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
}
.download-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.download-icon {
  width: 56px;
  height: 56px;
  background: var(--brand);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}
.download-card h3 {
  font-size: 20px;
  font-weight: 700;
}
.download-card .meta {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 4px;
}
.download-features {
  list-style: none;
  margin: 20px 0;
}
.download-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.download-features li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
}
.download-card .btn {
  width: 100%;
  justify-content: center;
}
.tutorial-section {
  margin: 48px 0;
}
.tutorial-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.tutorial-step {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.tutorial-step .num {
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin: 0 auto 16px;
}
.tutorial-step h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tutorial-step p {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .download-grid { grid-template-columns: 1fr; }
  .tutorial-steps { grid-template-columns: repeat(2, 1fr); }
}
