/* ═══════════════════════════════════
   CALinONE – Download Page Styles
   Liquid Glass Pro
   ═══════════════════════════════════ */

/* ── Download page ────────────────── */
.download-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.download-features {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    box-shadow: var(--glass-shine), var(--glow-purple);
    text-align: left;
}
.download-features h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 20px;
}
.download-features ul {
    list-style: none;
    padding: 0;
}
.download-features li {
    position: relative;
    padding: 10px 0 10px 32px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
}
.download-features li:last-child { border-bottom: none; }
.download-features li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 10px;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ── Responsive ───────────────────── */
@media (max-width: 768px) {
    .download-features { padding: 24px 20px; }
}
