/* QuickQ - Download Page CSS (Infineon Style) */
.page-hero {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--brand-2), #001a33);
  color: #fff;
  text-align: center;
}
.page-hero h1 { font-size: 42px; font-weight: 900; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.8); 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: #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 8px 24px rgba(0,169,224,.1); }
.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; }
@media (max-width: 1024px) { .download-grid { grid-template-columns: 1fr; } }
