.download-page-hero {
    padding: 100px 0 40px;
    text-align: center;
}

.download-card {
    max-width: 560px;
    margin: 0 auto 60px;
    padding: 48px 40px;
    background: var(--color-surface-999);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

    .download-card i.fa-windows {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 16px;
    }

.download-requirements {
    margin-top: 18px;
    font-size: 0.875rem;
    color: var(--text-light);
}

    .download-requirements i {
        color: #10b981;
    }

.download-steps {
    padding: 20px 0 80px;
}

.download-steps-list {
    max-width: 700px;
    margin: 40px auto 0;
    counter-reset: download-step;
    list-style: none;
    padding: 0;
}

.download-step {
    counter-increment: download-step;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 0;
}

    .download-step::before {
        content: counter(download-step);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--primary);
        color: white;
        font-weight: 700;
    }

    .download-step p {
        margin: 6px 0 0;
        color: var(--text-main);
    }

.download-notice {
    max-width: 700px;
    margin: 0 auto 80px;
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-light);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
}

    .download-notice i {
        color: var(--primary);
        font-size: 1.25rem;
        margin-top: 2px;
    }

    .download-notice h3 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .download-notice p {
        margin: 0;
        color: var(--text-light);
        font-size: 0.9rem;
    }
