/* QuickQ - Download Page CSS (TI Style) */
.page-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--text), #333);
  color: #fff;
  text-align: center;
}
.page-hero h1 { font-size: 38px; font-weight: 700; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 48px 0; }
.download-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: all .3s; }
.download-card:hover { border-color: var(--brand); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.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: 700; }
.download-card h3 { font-size: 18px; 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; }
@media (max-width: 1024px) { .download-grid { grid-template-columns: 1fr; } }
